the non-optional binding options
Gets the binding options (read-only).
Provides the WAMP binding with application-specific options as value of the
CommunicationOptions.binding
property in the agent container configuration.
To be used as follows:
import { WampBinding } from "@coaty/binding.wamp";
const configuration: Configuration = {
...
communication: {
binding: WampBinding.withOptions({
routerUrl: ... ,
...
}),
...
},
...
};
options available for WAMP binding
Generated using TypeDoc
Defines a communication binding for transmitting Coaty communication events via the WAMP publish-subscribe messaging protocol.
This binding is compatible with any WAMP router that supports the WAMP v2 protocol.
This binding provides the following WAMP specific publication options for Raw events:
This binding provides the following WAMP specific subscription options for Raw events:
To enable debug mode of the underlying
autobahn
library, set global variableAUTOBAHN_DEBUG
to true before loading this binding. Likewise, to enable output of warnings of the underlyingautobahn
library, set global variableAUTOBAHN_WARN
to true.