service

package
v0.0.0-...-ea65d50 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 27, 2022 License: Apache-2.0 Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ClientConnection

type ClientConnection interface {
	// Out returns a channel with which clients can send messages to the service
	Out() chan<- *model.Message

	// Send sends the given msg to the Service
	Send(msg *model.Message)

	// In returns a channel which clients can use to receive messages from the service
	In() <-chan *model.Message

	// Receive receives the next msg from the Service
	Receive() *model.Message

	// Drain drains all pending messages from the service
	Drain() int

	// Close closes the client connection
	Close()
}

ClientConnection represents a client connection to a Service

type Service

type Service interface {
	// Connect connects to the Service and returns a ClientConnection that can be used to interact with the service.
	Connect() (ClientConnection, error)
}

Service is a tassis service that handles key distribution and message transport.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL