DurableObject.Dsl.Handler (DurableObject v0.3.2)

Copy Markdown View Source

Struct representing a handler (RPC method) in a Durable Object.

Handlers define the operations that can be performed on the object:

  • name - The handler name (atom)
  • args - List of argument names (atoms)

Summary

Types

t()

@type t() :: %DurableObject.Dsl.Handler{
  __spark_metadata__: any(),
  args: [atom()],
  name: atom()
}