Versions in this module Expand all Collapse all v1 v1.7.17 Aug 31, 2022 Changes in this version + var ErrMessageTooLarge = errors.New("message too large") + type Client struct + func Dial(addr string) (*Client, error) + func (c *Client) Close() error + func (c *Client) Recv() ([]byte, error) + func (c *Client) SetMaxMessageSize(s int64) + type Socket struct + func NewSocket(addr string, log logging.Logger) *Socket + func (s *Socket) Close() error + func (s *Socket) Listen() error + func (s *Socket) Running() bool + func (s *Socket) Send(msg []byte)