mux

package
v0.0.0-...-e4696f9 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 23, 2014 License: MIT Imports: 9 Imported by: 0

Documentation

Overview

package mux implements a protocol muxer.

Index

Constants

This section is empty.

Variables

View Source
var (
	ProtocolID_Routing    = pb.ProtocolID_Routing
	ProtocolID_Exchange   = pb.ProtocolID_Exchange
	ProtocolID_Diagnostic = pb.ProtocolID_Diagnostic
)

ProtocolIDs used to identify each protocol. These should probably be defined elsewhere.

Functions

This section is empty.

Types

type Muxer

type Muxer struct {
	// Protocols are the multiplexed services.
	Protocols ProtocolMap

	*msg.Pipe
	ctxc.ContextCloser
	// contains filtered or unexported fields
}

Muxer is a simple multiplexor that reads + writes to Incoming and Outgoing channels. It multiplexes various protocols, wrapping and unwrapping data with a ProtocolID.

func NewMuxer

func NewMuxer(ctx context.Context, mp ProtocolMap) *Muxer

NewMuxer constructs a muxer given a protocol map.

func (*Muxer) AddProtocol

func (m *Muxer) AddProtocol(p Protocol, pid pb.ProtocolID) error

AddProtocol adds a Protocol with given ProtocolID to the Muxer.

func (*Muxer) GetBandwidthTotals

func (m *Muxer) GetBandwidthTotals() (in uint64, out uint64)

GetBandwidthTotals return the in/out bandwidth measured over this muxer.

func (*Muxer) GetPipe

func (m *Muxer) GetPipe() *msg.Pipe

GetPipe implements the Protocol interface

type Protocol

type Protocol interface {
	GetPipe() *msg.Pipe
}

Protocol objects produce + consume raw data. They are added to the Muxer with a ProtocolID, which is added to outgoing payloads. Muxer properly encapsulates and decapsulates when interfacing with its Protocols. The Protocols do not encounter their ProtocolID.

type ProtocolMap

type ProtocolMap map[pb.ProtocolID]Protocol

ProtocolMap maps ProtocolIDs to Protocols.

Directories

Path Synopsis
internal
pb
Package mux_pb is a generated protocol buffer package.
Package mux_pb is a generated protocol buffer package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL
JackTT - Gopher 🇻🇳