subsystem

package
v2.0.0-alpha.16 Latest Latest
Warning

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

Go to latest
Published: Jan 26, 2021 License: MIT Imports: 13 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Binding

type Binding struct {
	// contains filtered or unexported fields
}

Binding is the Binding subsystem. It manages all service bus messages starting with "binding".

func NewBinding

func NewBinding(bus *servicebus.ServiceBus, logger *logger.Logger, bindings *binding.Bindings, runtime *runtime.Runtime) (*Binding, error)

NewBinding creates a new binding subsystem. Uses the given bindings db for reference.

func (*Binding) Start

func (b *Binding) Start() error

Start the subsystem

type Call

type Call struct {

	// bindings DB
	DB *binding.DB
	// contains filtered or unexported fields
}

Call is the Call subsystem. It manages all service bus messages starting with "call".

func NewCall

func NewCall(bus *servicebus.ServiceBus, logger *logger.Logger, DB *binding.DB, runtime *runtime.Runtime) (*Call, error)

NewCall creates a new call subsystem

func (*Call) Start

func (c *Call) Start() error

Start the subsystem

type CallbackMessage

type CallbackMessage struct {
	Result     interface{} `json:"result"`
	Err        string      `json:"error"`
	CallbackID string      `json:"callbackid"`
}

CallbackMessage defines a message that contains the result of a call

type Event

type Event struct {
	// contains filtered or unexported fields
}

Event is the Eventing subsystem. It manages all service bus messages starting with "event".

func NewEvent

func NewEvent(bus *servicebus.ServiceBus, logger *logger.Logger) (*Event, error)

NewEvent creates a new log subsystem

func (*Event) RegisterListener

func (e *Event) RegisterListener(eventName string, callback func(...interface{}), counter int)

RegisterListener provides a means of subscribing to events of type "eventName"

func (*Event) Start

func (e *Event) Start() error

Start the subsystem

type Log

type Log struct {
	// contains filtered or unexported fields
}

Log is the Logging subsystem. It handles messages with topics starting with "log:"

func NewLog

func NewLog(bus *servicebus.ServiceBus, logger *logger.Logger, logLevelStore *runtime.Store) (*Log, error)

NewLog creates a new log subsystem

func (*Log) Start

func (l *Log) Start() error

Start the subsystem

type Menu struct {
	// contains filtered or unexported fields
}

Menu is the subsystem that handles the operation of menus. It manages all service bus messages starting with "menu".

func NewMenu

func NewMenu(bus *servicebus.ServiceBus, logger *logger.Logger, menuManager *menumanager.Manager) (*Menu, error)

NewMenu creates a new menu subsystem

func (m *Menu) Start() error

Start the subsystem

type Runtime

type Runtime struct {
	// contains filtered or unexported fields
}

Runtime is the Runtime subsystem. It handles messages with topics starting with "runtime:"

func NewRuntime

func NewRuntime(bus *servicebus.ServiceBus, logger *logger.Logger, startupCallback func(*runtime.Runtime), shutdownCallback func()) (*Runtime, error)

NewRuntime creates a new runtime subsystem

func (*Runtime) GoRuntime

func (r *Runtime) GoRuntime() *runtime.Runtime

GoRuntime returns the Go Runtime object

func (*Runtime) Start

func (r *Runtime) Start() error

Start the subsystem

Jump to

Keyboard shortcuts

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