Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Action ¶
type Action string
Action describes how the subject of an event is altered by the object.
const ( // Replace replaces the current value of the subject with the object. Replace Action = "replace" // Prepend prepends the object to the list of values of the subject. Prepend Action = "prepend" // Append appends the object to the list of values of the subject. Append Action = "append" // Remove removes the object from the list of values of the subject. Remove Action = "remove" // Reload tells the listener to reload the state of the subject. Reload Action = "reload" )
Click to show internal directories.
Click to hide internal directories.