Documentation
¶
Index ¶
- Constants
- Variables
- func Go() error
- func Override(create func() Component)
- func OverrideName(name string, create func() Component)
- func QualifiedName(v any) string
- func Register(create func() Component)
- func RegisterName(name string, create func() Component)
- func Shutdown() error
- func Split(s, sep, quote string) ([]string, bool)
- type Component
- type DependencyInjectionError
- type Event
- type EventBus
- type Flag
- type Handler
- type Options
- type Process
- type PublishError
- type Runtime
- type Session
- func (s *Session) Go() error
- func (s *Session) Override(create func() Component) error
- func (s *Session) OverrideName(name string, create func() Component) error
- func (s *Session) Register(create func() Component) error
- func (s *Session) RegisterName(name string, create func() Component) error
- func (s *Session) Shutdown() error
Constants ¶
const ( // Created is set directly after the component was successfully created by the provided factory Created componentState = iota // Initialized is set after the component Init() function was called Initialized // Started is set after the component Start() function was called Started // Stopped is set after the component Stop() function was called Stopped // Failed is set when the component couldn't be initialized Failed )
const (
// DefaultName is used when registering components without an explicit name.
DefaultName = "default"
)
Variables ¶
var ( // ErrHandlerMustNotBeNil is returned if the handler is nil, which is not allowed ErrHandlerMustNotBeNil = errors.New("handler must not be nil") // ErrEventMustNotBeNil is returned if the event is nil, which is not sensible ErrEventMustNotBeNil = errors.New("event must not be nil") // ErrUnknownEventType is returned if the event type could not be determined ErrUnknownEventType = errors.New("couldn't determiner the message type") // ErrHandlerNotFound is returned if the handler to be removed could not be found ErrHandlerNotFound = errors.New("handler not found to remove") )
var ( // Logger contains a debug, info, warning and error logger, which is used for fine-grained log // output. Every logger can be muted or unmuted separately. // e.g. Logger.Unmute(Logger.Debug) Logger logger )
Functions ¶
func OverrideName ¶
OverrideName overrides a factory function with the given name.
func QualifiedName ¶
QualifiedName returns the full name of a struct, function or a simple name of a primitive.
func RegisterName ¶
RegisterName registers a factory function with the given name.
Types ¶
type Component ¶
type Component interface { // Init initializes data, set the default configuration, subscribe to events // or performs other kind of configuration. Init() error }
Component represent functional building blocks, which solve one specific purpose. They should be fail tolerant, recoverable, agnostic and decent.
fail tolerant: Don't stop processing on errors. Example: A http request can still be processed, even when the logging server is not available anymore.
recoverable: Try to recover from errors. E.g. a database component should try to reconnect after lost connection.
agnostic: Behave the same in any environment. E.g. a key-value store component should work on a local development Session the same way as in a containerized environment.
decent: Don't overload the developer with complexity. E.g. keep the interface and events as simple as possible. Less is often more.
type DependencyInjectionError ¶
type DependencyInjectionError struct {
// contains filtered or unexported fields
}
DependencyInjectionError contains a detail description for the cause of the injection failure
func (*DependencyInjectionError) Error ¶
func (e *DependencyInjectionError) Error() string
type EventBus ¶
type EventBus interface { // Subscribe subscribes to a message type. // Returns error if handler fails. Subscribe(handler Handler) error // Unsubscribe removes handler defined for a message type. // Returns error if there are no handlers subscribed to the message type. Unsubscribe(handler Handler) error // Publish executes handler defined for a message type. Publish(event Event) (err error) // HasHandler returns true if exists any handler subscribed to the message type. HasHandler(event Handler) bool }
EventBus provides the ability to decouple components. It is designed as a replacement for direct methode calls, so components can subscribe for messages produced by other components.
type Flag ¶
type Flag string
Flag describes a special behaviour of a component
const ( // StandardFlag is set when the component is started in unit test mode. StandardFlag Flag = "standard" // UnitTestFlag is set when the component is started in unit test mode. UnitTestFlag Flag = "unitTest" // FunctionalTestFlag is set when the component is started in functional test mode. FunctionalTestFlag Flag = "functionalTest" )
type Handler ¶ added in v1.1.0
type Handler any
Handler is a function which has one argument. This argument is usually a published event. An error may be optional provided. E.g. func(e MyEvent) err
type Options ¶ added in v1.2.0
type Options struct { // Mode is a list of flags to be used for the application. Mode []Flag // DoMain is called when the application is requested to start and blocks until shutdown is requested. DoMain func() error // DoShutdown is called when the application is requested to shutdown. DoShutdown func() error // contains filtered or unexported fields }
Options contains the options for the boot-go Session
type Process ¶
type Process interface { Component // Start is called as soon as all boot.Component components are initialized. The call should be // blocking until all processing is completed. Start() error // Stop is called to abort the processing and clean up resources. Pay attention that the // processing may already be stopped. Stop() error }
Process is a Component which has a processing functionality. This can be anything like a server, cron job or long-running process.
type PublishError ¶ added in v1.1.0
type PublishError struct {
// contains filtered or unexported fields
}
PublishError will be provided by the
func (*PublishError) Error ¶ added in v1.1.0
func (err *PublishError) Error() string
Error is used to confirm to the error interface
type Runtime ¶
Runtime is a standard component, which is used to alternate the component behaviour at runtime.
type Session ¶ added in v1.1.0
type Session struct {
// contains filtered or unexported fields
}
Session is the main struct for the boot-go application framework
func NewSession ¶ added in v1.1.0
NewSession will create a new Session with default options
func NewSessionWithOptions ¶ added in v1.2.0
NewSessionWithOptions will create a new Session with given options
func (*Session) Go ¶ added in v1.1.0
Go the boot component framework. This starts the execution process.
func (*Session) Override ¶ added in v1.1.0
Override a factory function for a component. The component will be created on boot.
func (*Session) OverrideName ¶ added in v1.1.0
OverrideName overrides a factory function with the given name. The component will be created on boot.
func (*Session) Register ¶ added in v1.1.0
Register a factory function for a component. The component will be created on boot.
func (*Session) RegisterName ¶ added in v1.1.0
RegisterName registers a factory function with the given name. The component will be created on boot.