micro/network/network.go

24 lines
480 B
Go
Raw Normal View History

2019-07-31 17:22:57 +03:00
// Package network is for building peer to peer networks
package network
// Network is a
type Network interface {
// Name of the network
Name() string
// Connect starts the network node
Connect() error
// Close shutsdown the network node
Close() error
}
var (
2019-07-31 17:35:51 +03:00
DefaultName = "go.micro.network"
DefaultAddress = ":0"
2019-07-31 17:22:57 +03:00
DefaultNetwork = NewNetwork()
)
2019-07-31 17:37:12 +03:00
// NewNetwork returns a new network interface
func NewNetwork(opts ...Option) Network {
return newNetwork(opts...)
}