providers

package
v0.12.0 Latest Latest
Warning

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

Go to latest
Published: Oct 28, 2021 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ServiceFactory

type ServiceFactory interface {
	NewDocumentService() (document.DocumentService, error)
	NewEventService() (events.EventService, error)
	NewGatewayService() (gateway.GatewayService, error)
	NewQueueService() (queue.QueueService, error)
	NewStorageService() (storage.StorageService, error)
}

ServiceFactory - interface for Service Factory Plugins, which instantiate provider specific service implementations.

type UnimplementedServiceFactory

type UnimplementedServiceFactory struct {
}

UnimplementedServiceFactory - provides stub methods for a ServiceFactory which return Unimplemented Methods.

Returning nil from a New service method is a valid response. Without an accompanying error, this will be interpreted as the method being explicitly unimplemented.

Plugin Factories with unimplemented New methods are only supported when the TOLERATE_MISSING_SERVICE option is set to true when executing the pluggable membrane.

func (*UnimplementedServiceFactory) NewDocumentService

func (p *UnimplementedServiceFactory) NewDocumentService() (document.DocumentService, error)

NewDocumentService - Unimplemented

func (*UnimplementedServiceFactory) NewEventService

func (p *UnimplementedServiceFactory) NewEventService() (events.EventService, error)

NewEventService - Unimplemented

func (*UnimplementedServiceFactory) NewGatewayService

func (p *UnimplementedServiceFactory) NewGatewayService() (gateway.GatewayService, error)

NewGatewayService - Unimplemented

func (*UnimplementedServiceFactory) NewQueueService

func (p *UnimplementedServiceFactory) NewQueueService() (queue.QueueService, error)

NewQueueService - Unimplemented

func (*UnimplementedServiceFactory) NewStorageService

func (p *UnimplementedServiceFactory) NewStorageService() (storage.StorageService, error)

NewStorageService - Unimplemented

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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