Documentation
¶
Index ¶
Constants ¶
View Source
const ( DefaultPort = 6000 DefaultListenAddress = ":6000" DefaultConnectAddress = "localhost:6000" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
func (*Client) CheckoutBatch ¶ added in v0.5.0
type ClientBuilder ¶
type ClientBuilder struct {
// contains filtered or unexported fields
}
func NewClientBuilder ¶
func NewClientBuilder() *ClientBuilder
func (*ClientBuilder) Create ¶
func (b *ClientBuilder) Create() (*Client, error)
func (*ClientBuilder) WithAddress ¶
func (b *ClientBuilder) WithAddress(address string) *ClientBuilder
func (*ClientBuilder) WithPort ¶
func (b *ClientBuilder) WithPort(port int) *ClientBuilder
type Server ¶
type Server struct {
// contains filtered or unexported fields
}
func (*Server) ServerCloseNotify ¶
type ServerBuilder ¶
type ServerBuilder struct {
// contains filtered or unexported fields
}
func NewServerBuilder ¶
func NewServerBuilder() *ServerBuilder
func (*ServerBuilder) Create ¶
func (sb *ServerBuilder) Create() (*Server, error)
func (*ServerBuilder) WithAddress ¶
func (sb *ServerBuilder) WithAddress(address string) *ServerBuilder
func (*ServerBuilder) WithPoolSet ¶
func (sb *ServerBuilder) WithPoolSet(pools ephemerald.PoolSet) *ServerBuilder
func (*ServerBuilder) WithPort ¶
func (sb *ServerBuilder) WithPort(port int) *ServerBuilder
Click to show internal directories.
Click to hide internal directories.