View Source LiveQuery.Query.DefLike protocol (LiveQuery v0.2.0)

TODO

Summary

Types

Functions

Link to this function

handle_call(self, msg, from, state)

View Source
@spec handle_call(
  self :: t(),
  msg :: any(),
  from :: GenServer.from(),
  state :: %{:key => any(), :config => map(), optional(:data) => data()}
) :: {:noreply, data()} | {:reply, any(), data()}

TODO

Link to this function

handle_cast(self, msg, state)

View Source
@spec handle_cast(
  self :: t(),
  msg :: any(),
  state :: %{:key => any(), :config => map(), optional(:data) => data()}
) :: data()

TODO

Link to this function

handle_info(self, msg, state)

View Source
@spec handle_info(
  self :: t(),
  msg :: any(),
  state :: %{:key => any(), :config => map(), optional(:data) => data()}
) :: data()

TODO

@spec init(
  self :: t(),
  state :: %{key: any(), config: map()}
) :: data()

TODO