Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Connection ¶
type Connection interface {
// Receive sends events to the given channel
Receive(chan<- interface{})
// Close closes the connection
Close()
// Closed return true if the connection is closed
Closed() bool
}
Connection defines the functions for an event server connection
type ConnectionProvider ¶
type ConnectionProvider func(context context.Client, chConfig fab.ChannelCfg, peer fab.Peer) (Connection, error)
ConnectionProvider creates a Connection.
Click to show internal directories.
Click to hide internal directories.