Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Actor ¶
type Actor interface { // ID returns the unique ID for the actor ID() string // Types returns the underlying types the actor subscribes to Types() []string // Write pushes information to the actor Write([]byte) error // Close the actor Close() // NoForward decides if messages should be forwarded to the actor NoForward() bool // Done returns if the actor is done messaging. Done() bool }
Actor defines an broker between event messages and nodes
Click to show internal directories.
Click to hide internal directories.