types

package
v0.0.4 Latest Latest
Warning

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

Go to latest
Published: Jun 20, 2018 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	DefaultKeepAlive                 = 60 // DefaultKeepAlive default keep
	DefaultConnectTimeout            = 2  // DefaultConnectTimeout connect timeout
	DefaultMaxPacketSize             = 268435455
	DefaultReceiveMax                = 65535
	DefaultAckTimeout                = 20 // DefaultAckTimeout ack timeout
	DefaultTimeoutRetries            = 3  // DefaultTimeoutRetries retries
	MinKeepAlive                     = 30
	DefaultSessionsProvider          = "mem"         // DefaultSessionsProvider default session provider
	DefaultAuthenticator             = "mockSuccess" // DefaultAuthenticator default auth provider
	DefaultTopicsProvider            = "mem"         // DefaultTopicsProvider default topics provider
	DefaultPersistBufferSyncInterval = uint64(1000)
)

Default configs

Variables

This section is empty.

Functions

This section is empty.

Types

type ListWithLock added in v0.0.4

type ListWithLock struct {
	sync.RWMutex
	*list.List
}

ListWithLock 带锁的list. 要保证协程安全, 在使用时需要合理利用锁的机制. 当前协程安全的方法调用有: PushBack, Front, Remove,这些方法在与非协程安全的方法同时调用时,仍是不安全的.

func NewListWithLock added in v0.0.4

func NewListWithLock() *ListWithLock

func (*ListWithLock) Front added in v0.0.4

func (lwl *ListWithLock) Front() *list.Element

func (*ListWithLock) PushBack added in v0.0.4

func (lwl *ListWithLock) PushBack(v interface{}) *list.Element

func (*ListWithLock) Remove added in v0.0.4

func (lwl *ListWithLock) Remove(e *list.Element) interface{}

type LogInterface

type LogInterface struct {
	Prod *zap.Logger
	Dev  *zap.Logger
}

LogInterface inherited by internal packages to provide hierarchical logs

type Once

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

Once is an object that will perform exactly one action.

func (*Once) Do

func (o *Once) Do(f func()) bool

Do calls the function f if and only if Do is being called for the first time for this instance of Once. In other words, given

var once Once

if once.Do(f) is called multiple times, only the first call will invoke f, even if f has a different value in each invocation. A new instance of Once is required for each function to execute.

Do is intended for initialization that must be run exactly once. Since f is niladic, it may be necessary to use a function literal to capture the arguments to a function to be invoked by Do:

config.once.Do(func() { config.init(filename) })

Because no call to Do returns until the one call to f returns, if f causes Do to be called, it will deadlock.

If f panics, Do considers it to have returned; future calls of Do return without calling f.

type OnceWait

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

OnceWait is an object that will perform exactly one action.

func (*OnceWait) Do

func (o *OnceWait) Do(f func()) bool

Do calls the function f if and only if Do is being called for the first time for this instance of Once. In other words, given

var once Once

if once.Do(f) is called multiple times, only the first call will invoke f, even if f has a different value in each invocation. A new instance of Once is required for each function to execute.

Do is intended for initialization that must be run exactly once. Since f is niladic, it may be necessary to use a function literal to capture the arguments to a function to be invoked by Do:

config.once.Do(func() { config.init(filename) })

Because no call to Do returns until the one call to f returns, if f causes Do to be called, it will deadlock.

If f panics, Do considers it to have returned; future calls of Do return without calling f.

type RetainObject

type RetainObject interface {
	Topic() string
}

RetainObject general interface of the retain as not only publish message can be retained

type TopicMessenger

type TopicMessenger interface {
	Publish(interface{}) error
	Retain(RetainObject) error
}

TopicMessenger interface for session or systree used to publish or retain messages

Jump to

Keyboard shortcuts

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