Documentation ¶
Overview ¶
Package ipc provides server and client types for inter-process communications.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // expose internal errors for outside inspection ErrInUse = flisten.ErrInUse ErrConnLost = flisten.ErrConnLost )
Functions ¶
This section is empty.
Types ¶
type RequestHandler ¶
RequestHandler describes a function that receives a key which is used to verify if the handler is useful for a given request. If it is useful, the remainder of the function is used for some special behavior (usually, to simply return some value). This enables dynamic construction of IPC Server handlers/endpoints.
type Server ¶
type Server struct {
// contains filtered or unexported fields
}
type ServerDownError ¶
type ServerDownError struct {
// contains filtered or unexported fields
}
func NewServerDownError ¶
func NewServerDownError(err error) *ServerDownError
func (*ServerDownError) Error ¶
func (e *ServerDownError) Error() string
func (*ServerDownError) Unwrap ¶
func (e *ServerDownError) Unwrap() error
Click to show internal directories.
Click to hide internal directories.