Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type InboundMessageHandler ¶
InboundMessageHandler handles the inbound requests. The transport will unpack the payload prior to the message handle invocation.
type InboundProvider ¶
type InboundProvider interface { InboundMessageHandler() InboundMessageHandler Packager() transport.Packager }
InboundProvider contains dependencies for starting the inbound transport. It is typically created by using aries.Context().
type InboundTransport ¶
type InboundTransport interface { // starts the inbound transport Start(prov InboundProvider) error // stops the inbound transport Stop() error // returns the endpoint Endpoint() string }
InboundTransport interface definition for inbound transport layer
Click to show internal directories.
Click to hide internal directories.