Documentation ¶
Index ¶
- type CallMap
- type ProxyCall
- func (pc *ProxyCall) DecRetryTime()
- func (pc *ProxyCall) DoRet(body []byte)
- func (pc ProxyCall) GetErrorCode() uint32
- func (pc *ProxyCall) GetRetryTime() int32
- func (pc *ProxyCall) GetTimeOut() uint32
- func (pc *ProxyCall) GlobalIndex() protocol.GlobalIndexType
- func (pc *ProxyCall) SetErrorCode(errCode uint32)
- func (pc *ProxyCall) SetGlobalIndex(index protocol.GlobalIndexType)
- type ProxyCallManager
- func (pcm *ProxyCallManager) Add(pc *ProxyCall) error
- func (pcm *ProxyCallManager) CreateProxyCall(proxyId ProxyUuid, timeOut uint32, retryTime int32, ...) *ProxyCall
- func (pcm *ProxyCallManager) Destroy(callId uint32)
- func (pcm *ProxyCallManager) GenCallID() uint32
- func (pcm *ProxyCallManager) Get(callId uint32) *ProxyCall
- type ProxyUuid
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ProxyCall ¶
type ProxyCall struct { CallID uint32 //proxy call uuid, do not modify ProxyId ProxyUuid //proxy instance id ReqData []byte //serizaled data of rpc request Ch chan []byte //response notify channel // contains filtered or unexported fields }
ProxyCall rpc-proxy call information of remote call description
func (*ProxyCall) DecRetryTime ¶
func (pc *ProxyCall) DecRetryTime()
DecRetryTime decrease retry time, read & write in worker goroutine
func (ProxyCall) GetErrorCode ¶ added in v0.3.4
func (*ProxyCall) GetRetryTime ¶
GetRetryTime get left retry time
func (*ProxyCall) GetTimeOut ¶
GetTimeOut timeout millisecond
func (*ProxyCall) GlobalIndex ¶ added in v0.3.4
func (pc *ProxyCall) GlobalIndex() protocol.GlobalIndexType
func (*ProxyCall) SetErrorCode ¶
func (*ProxyCall) SetGlobalIndex ¶ added in v0.3.4
func (pc *ProxyCall) SetGlobalIndex(index protocol.GlobalIndexType)
type ProxyCallManager ¶
type ProxyCallManager struct {
// contains filtered or unexported fields
}
ProxyCallManager manager proxy call for multi goroutine
func NewCallManager ¶
func NewCallManager() *ProxyCallManager
func (*ProxyCallManager) Add ¶
func (pcm *ProxyCallManager) Add(pc *ProxyCall) error
func (*ProxyCallManager) CreateProxyCall ¶
func (pcm *ProxyCallManager) CreateProxyCall(proxyId ProxyUuid, timeOut uint32, retryTime int32, globalIndex protocol.GlobalIndexType) *ProxyCall
func (*ProxyCallManager) Destroy ¶
func (pcm *ProxyCallManager) Destroy(callId uint32)
func (*ProxyCallManager) GenCallID ¶
func (pcm *ProxyCallManager) GenCallID() uint32
func (*ProxyCallManager) Get ¶
func (pcm *ProxyCallManager) Get(callId uint32) *ProxyCall
Click to show internal directories.
Click to hide internal directories.