Documentation
¶
Overview ¶
handlers.go sepcifies the websocket handlers that rendezvous server uses to facilitate communcation between sender and receiver.
id.go specifies the central datastructure used to keep track of connection ids.
mailbox.go defines the central datastructure that keeps track of the different connections.
Index ¶
Constants ¶
View Source
const RECEIVER_CONNECT_TIMEOUT time.Duration = 5 * time.Minute
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Mailbox ¶
type Mailbox struct { Receiver chan []byte // messages to Receiver Sender chan []byte // messages to Sender // contains filtered or unexported fields }
Mailbox is a data structure that links together a sender and a receiver client.
type Mailboxes ¶
func (*Mailboxes) DeleteMailbox ¶
DeleteMailbox deallocates a mailbox.
func (*Mailboxes) GetMailbox ¶
GetMailbox returns the desired mailbox.
func (*Mailboxes) StoreMailbox ¶
StoreMailbox allocates a mailbox.
Click to show internal directories.
Click to hide internal directories.