Documentation ¶
Index ¶
Constants ¶
View Source
const ( PeerIdHeader = 10 PeerAddrHeader = 11 PeerVersionHeader = 12 RaftConnectType = 2048 RaftDataType = 2049 ChannelTypeMesh = "ctrl.mesh" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Mesh ¶
type Mesh interface { raft.StreamLayer channel.UnderlayAcceptor // GetOrConnectPeer returns a peer for the given address. If a peer has already been established, // it will be returned, otherwise a new connection will be established GetOrConnectPeer(address string, timeout time.Duration) (*Peer, error) IsReadOnly() bool }
Mesh provides the networking layer to raft
type Peer ¶
type Peer struct { Id raft.ServerID Address string Channel channel.Channel RaftConn *raftPeerConn Version string // contains filtered or unexported fields }
func (*Peer) ContentType ¶
func (*Peer) HandleClose ¶
func (self *Peer) HandleClose(channel.Channel)
func (*Peer) HandleReceive ¶
func (self *Peer) HandleReceive(m *channel.Message, ch channel.Channel)
Click to show internal directories.
Click to hide internal directories.