View Source Grizzly.CommandHandlers.AggregateReport (grizzly v6.1.0)

Handler for working with reports that could take many report frames to complete

This handler will handle aggregating the responses into one report command for ease of consumption by callers.

Link to this section Summary

Link to this section Types

@type opt() :: {:complete_report, atom(), [{:aggregate_param, atom()}]}
@type state() :: %{
  complete_report: atom(),
  aggregate_param: atom(),
  aggregates: [any()]
}

Link to this section Functions

@spec handle_ack(state()) :: {:continue, state()}

Callback implementation for Grizzly.CommandHandler.handle_ack/1.

Link to this function

handle_command(command, state)

View Source
@spec handle_command(Grizzly.ZWave.Command.t(), state()) ::
  {:continue, state()} | {:complete, Grizzly.ZWave.Command.t()}

Callback implementation for Grizzly.CommandHandler.handle_command/2.

@spec init([opt()]) :: {:ok, state()}

Callback implementation for Grizzly.CommandHandler.init/1.