Documentation ¶
Index ¶
- type HTTPHandlerFunc
- type HTTPSDispatcher
- type HTTPSHandler
- func (h HTTPSHandler) RegisterAdditionalFunc(handlerFunc boshhandler.Func)
- func (h HTTPSHandler) Run(handlerFunc boshhandler.Func) error
- func (h HTTPSHandler) Send(target boshhandler.Target, topic boshhandler.Topic, message interface{}) error
- func (h HTTPSHandler) Start(handlerFunc boshhandler.Func) error
- func (h HTTPSHandler) Stop()
- type Handler
- type HandlerProvider
- type TimeoutNatsClient
- func (c *TimeoutNatsClient) BeforeConnectCallback(callback func())
- func (c *TimeoutNatsClient) Connect(connectionProvider yagnats.ConnectionProvider) error
- func (c *TimeoutNatsClient) Disconnect()
- func (c *TimeoutNatsClient) Ping() bool
- func (c *TimeoutNatsClient) Publish(subject string, payload []byte) error
- func (c *TimeoutNatsClient) PublishWithReplyTo(subject, reply string, payload []byte) error
- func (c *TimeoutNatsClient) Subscribe(subject string, callback yagnats.Callback) (int64, error)
- func (c *TimeoutNatsClient) SubscribeWithQueue(subject, queue string, callback yagnats.Callback) (int64, error)
- func (c *TimeoutNatsClient) Unsubscribe(subscription int64) error
- func (c *TimeoutNatsClient) UnsubscribeAll(subject string)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type HTTPHandlerFunc ¶ added in v0.0.33
type HTTPHandlerFunc func(writer http.ResponseWriter, request *http.Request)
type HTTPSDispatcher ¶ added in v0.0.33
type HTTPSDispatcher struct {
// contains filtered or unexported fields
}
func NewHTTPSDispatcher ¶ added in v0.0.33
func NewHTTPSDispatcher(baseURL *url.URL, keyPair settings.CertKeyPair, logger boshlog.Logger) *HTTPSDispatcher
func (*HTTPSDispatcher) AddRoute ¶ added in v0.0.33
func (h *HTTPSDispatcher) AddRoute(route string, handler HTTPHandlerFunc)
func (*HTTPSDispatcher) Start ¶ added in v0.0.33
func (h *HTTPSDispatcher) Start() error
func (*HTTPSDispatcher) Stop ¶ added in v0.0.33
func (h *HTTPSDispatcher) Stop()
type HTTPSHandler ¶ added in v0.0.33
type HTTPSHandler struct {
// contains filtered or unexported fields
}
func NewHTTPSHandler ¶ added in v0.0.33
func NewHTTPSHandler( parsedURL *url.URL, keyPair settings.CertKeyPair, logger boshlog.Logger, fs boshsys.FileSystem, dirProvider boshdir.Provider, auditLogger platform.AuditLogger, ) HTTPSHandler
func (HTTPSHandler) RegisterAdditionalFunc ¶ added in v0.0.33
func (h HTTPSHandler) RegisterAdditionalFunc(handlerFunc boshhandler.Func)
func (HTTPSHandler) Run ¶ added in v0.0.33
func (h HTTPSHandler) Run(handlerFunc boshhandler.Func) error
func (HTTPSHandler) Send ¶ added in v0.0.33
func (h HTTPSHandler) Send(target boshhandler.Target, topic boshhandler.Topic, message interface{}) error
func (HTTPSHandler) Start ¶ added in v0.0.33
func (h HTTPSHandler) Start(handlerFunc boshhandler.Func) error
func (HTTPSHandler) Stop ¶ added in v0.0.33
func (h HTTPSHandler) Stop()
type Handler ¶
type Handler interface { Run(boshhandler.Func) error Start(boshhandler.Func) error RegisterAdditionalFunc(boshhandler.Func) Send(target boshhandler.Target, topic boshhandler.Topic, message interface{}) error Stop() }
func NewNatsHandler ¶
func NewNatsHandler( settingsService boshsettings.Service, client yagnats.NATSClient, logger boshlog.Logger, platform boshplatform.Platform, ) Handler
type HandlerProvider ¶
type HandlerProvider struct {
// contains filtered or unexported fields
}
func NewHandlerProvider ¶
func NewHandlerProvider( settingsService boshsettings.Service, logger boshlog.Logger, auditLogger boshplatform.AuditLogger, ) (p HandlerProvider)
func (HandlerProvider) Get ¶
func (p HandlerProvider) Get( platform boshplatform.Platform, dirProvider boshdir.Provider, ) (handler boshhandler.Handler, err error)
type TimeoutNatsClient ¶
type TimeoutNatsClient struct {
// contains filtered or unexported fields
}
func NewTimeoutNatsClient ¶
func NewTimeoutNatsClient(client yagnats.NATSClient, clock clock.Clock) *TimeoutNatsClient
func (*TimeoutNatsClient) BeforeConnectCallback ¶
func (c *TimeoutNatsClient) BeforeConnectCallback(callback func())
func (*TimeoutNatsClient) Connect ¶
func (c *TimeoutNatsClient) Connect(connectionProvider yagnats.ConnectionProvider) error
func (*TimeoutNatsClient) Disconnect ¶
func (c *TimeoutNatsClient) Disconnect()
func (*TimeoutNatsClient) Ping ¶
func (c *TimeoutNatsClient) Ping() bool
func (*TimeoutNatsClient) Publish ¶
func (c *TimeoutNatsClient) Publish(subject string, payload []byte) error
func (*TimeoutNatsClient) PublishWithReplyTo ¶
func (c *TimeoutNatsClient) PublishWithReplyTo(subject, reply string, payload []byte) error
func (*TimeoutNatsClient) SubscribeWithQueue ¶
func (*TimeoutNatsClient) Unsubscribe ¶
func (c *TimeoutNatsClient) Unsubscribe(subscription int64) error
func (*TimeoutNatsClient) UnsubscribeAll ¶
func (c *TimeoutNatsClient) UnsubscribeAll(subject string)
Source Files ¶
Click to show internal directories.
Click to hide internal directories.