- Source:
Methods
activate() → {unknown}
Enables communications; publish() will now send messages.
- Source:
Returns:
Void return.
- Type
- unknown
deactivate() → {unknown}
Disable communications; publish() will not send messages.
- Source:
Returns:
Void return.
- Type
- unknown
isActivated() → {boolean}
Determine if communications are enabled, i.e., activated, or
disabled, i.e., deactivated.
- Source:
Returns:
True if activated; otherwise false.
- Type
- boolean
onActivate() → {unknown}
A lifecycle-node activation notice.
- Source:
Returns:
Void return.
- Type
- unknown
onDeactivate() → {unknown}
A lifecycle-node deactivation notice.
- Source:
Returns:
Void return.
- Type
- unknown
publish(message) → {undefined}
Publish a message only when activated; otherwise do nothing (nop);
Parameters:
Name | Type | Description |
---|---|---|
message |
object | Buffer | The message to be sent, could be kind of JavaScript message generated from .msg or be a Buffer for a raw message. |
- Source:
Returns:
- Type
- undefined