micro/network/link/link.go
2019-07-10 17:43:36 +01:00

52 lines
1.2 KiB
Go

// Package link provides a measured transport.Socket link
package link
import (
"errors"
"github.com/micro/go-micro/config/options"
"github.com/micro/go-micro/transport"
)
// Link is a layer ontop of a transport socket with the
// buffering send and recv queue's with the ability to
// measure the actual transport link and reconnect.
type Link interface {
// provides the transport.Socket interface
transport.Socket
// Connect connects the link. It must be called first.
Connect() error
// Id of the link is "local" if not specified
Id() string
// Status of the link
Status() string
// Depth of the buffers
Weight() int
// Rate of the link
Length() int
}
var (
ErrLinkClosed = errors.New("link closed")
)
// NewLink creates a new link on top of a socket
func NewLink(opts ...options.Option) Link {
return newLink(options.NewOptions(opts...))
}
// Sets the link id
func Id(id string) options.Option {
return options.WithValue("link.id", id)
}
// The address to use for the link
func Address(a string) options.Option {
return options.WithValue("link.address", a)
}
// The transport to use for the link
func Transport(t transport.Transport) options.Option {
return options.WithValue("link.transport", t)
}