Documentation ¶
Overview ¶
Package client is a generated GoMock package.
Index ¶
- type Bean
- type Factory
- type FactoryProvider
- type MockBean
- func (m *MockBean) EXPECT() *MockBeanMockRecorder
- func (m *MockBean) GetFrontendClient() v1.WorkflowServiceClient
- func (m *MockBean) GetHistoryClient() v11.HistoryServiceClient
- func (m *MockBean) GetMatchingClient(namespaceIDToName NamespaceIDToNameFunc) (v12.MatchingServiceClient, error)
- func (m *MockBean) GetRemoteAdminClient(cluster string) v10.AdminServiceClient
- func (m *MockBean) GetRemoteFrontendClient(cluster string) v1.WorkflowServiceClient
- func (m *MockBean) SetFrontendClient(client v1.WorkflowServiceClient)
- func (m *MockBean) SetHistoryClient(client v11.HistoryServiceClient)
- func (m *MockBean) SetMatchingClient(client v12.MatchingServiceClient)
- func (m *MockBean) SetRemoteAdminClient(cluster string, client v10.AdminServiceClient)
- func (m *MockBean) SetRemoteFrontendClient(cluster string, client v1.WorkflowServiceClient)
- type MockBeanMockRecorder
- func (mr *MockBeanMockRecorder) GetFrontendClient() *gomock.Call
- func (mr *MockBeanMockRecorder) GetHistoryClient() *gomock.Call
- func (mr *MockBeanMockRecorder) GetMatchingClient(namespaceIDToName interface{}) *gomock.Call
- func (mr *MockBeanMockRecorder) GetRemoteAdminClient(cluster interface{}) *gomock.Call
- func (mr *MockBeanMockRecorder) GetRemoteFrontendClient(cluster interface{}) *gomock.Call
- func (mr *MockBeanMockRecorder) SetFrontendClient(client interface{}) *gomock.Call
- func (mr *MockBeanMockRecorder) SetHistoryClient(client interface{}) *gomock.Call
- func (mr *MockBeanMockRecorder) SetMatchingClient(client interface{}) *gomock.Call
- func (mr *MockBeanMockRecorder) SetRemoteAdminClient(cluster, client interface{}) *gomock.Call
- func (mr *MockBeanMockRecorder) SetRemoteFrontendClient(cluster, client interface{}) *gomock.Call
- type NamespaceIDToNameFunc
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Bean ¶ added in v0.5.0
type Bean interface { GetHistoryClient() historyservice.HistoryServiceClient SetHistoryClient(client historyservice.HistoryServiceClient) GetMatchingClient(namespaceIDToName NamespaceIDToNameFunc) (matchingservice.MatchingServiceClient, error) SetMatchingClient(client matchingservice.MatchingServiceClient) GetFrontendClient() workflowservice.WorkflowServiceClient SetFrontendClient(client workflowservice.WorkflowServiceClient) GetRemoteAdminClient(cluster string) adminservice.AdminServiceClient SetRemoteAdminClient(cluster string, client adminservice.AdminServiceClient) GetRemoteFrontendClient(cluster string) workflowservice.WorkflowServiceClient SetRemoteFrontendClient(cluster string, client workflowservice.WorkflowServiceClient) }
Bean in an collection of clients
type Factory ¶
type Factory interface { NewHistoryClient() (historyservice.HistoryServiceClient, error) NewMatchingClient(namespaceIDToName NamespaceIDToNameFunc) (matchingservice.MatchingServiceClient, error) NewFrontendClient(rpcAddress string) (workflowservice.WorkflowServiceClient, error) NewHistoryClientWithTimeout(timeout time.Duration) (historyservice.HistoryServiceClient, error) NewMatchingClientWithTimeout(namespaceIDToName NamespaceIDToNameFunc, timeout time.Duration, longPollTimeout time.Duration) (matchingservice.MatchingServiceClient, error) NewFrontendClientWithTimeout(rpcAddress string, timeout time.Duration, longPollTimeout time.Duration) (workflowservice.WorkflowServiceClient, error) NewAdminClientWithTimeout(rpcAddress string, timeout time.Duration, largeTimeout time.Duration) (adminservice.AdminServiceClient, error) }
Factory can be used to create RPC clients for temporal services
type FactoryProvider ¶ added in v1.11.0
type FactoryProvider interface { NewFactory( rpcFactory common.RPCFactory, monitor membership.Monitor, metricsClient metrics.Client, dc *dynamicconfig.Collection, numberOfHistoryShards int32, logger log.Logger, ) Factory }
FactoryProvider can be used to provide a customized client Factory implementation.
func NewFactoryProvider ¶ added in v1.11.0
func NewFactoryProvider() FactoryProvider
NewFactoryProvider creates a default implementation of FactoryProvider.
type MockBean ¶ added in v0.27.0
type MockBean struct {
// contains filtered or unexported fields
}
MockBean is a mock of Bean interface.
func NewMockBean ¶ added in v0.27.0
func NewMockBean(ctrl *gomock.Controller) *MockBean
NewMockBean creates a new mock instance.
func (*MockBean) EXPECT ¶ added in v0.27.0
func (m *MockBean) EXPECT() *MockBeanMockRecorder
EXPECT returns an object that allows the caller to indicate expected use.
func (*MockBean) GetFrontendClient ¶ added in v0.27.0
func (m *MockBean) GetFrontendClient() v1.WorkflowServiceClient
GetFrontendClient mocks base method.
func (*MockBean) GetHistoryClient ¶ added in v0.27.0
func (m *MockBean) GetHistoryClient() v11.HistoryServiceClient
GetHistoryClient mocks base method.
func (*MockBean) GetMatchingClient ¶ added in v0.27.0
func (m *MockBean) GetMatchingClient(namespaceIDToName NamespaceIDToNameFunc) (v12.MatchingServiceClient, error)
GetMatchingClient mocks base method.
func (*MockBean) GetRemoteAdminClient ¶ added in v0.27.0
func (m *MockBean) GetRemoteAdminClient(cluster string) v10.AdminServiceClient
GetRemoteAdminClient mocks base method.
func (*MockBean) GetRemoteFrontendClient ¶ added in v0.27.0
func (m *MockBean) GetRemoteFrontendClient(cluster string) v1.WorkflowServiceClient
GetRemoteFrontendClient mocks base method.
func (*MockBean) SetFrontendClient ¶ added in v0.27.0
func (m *MockBean) SetFrontendClient(client v1.WorkflowServiceClient)
SetFrontendClient mocks base method.
func (*MockBean) SetHistoryClient ¶ added in v0.27.0
func (m *MockBean) SetHistoryClient(client v11.HistoryServiceClient)
SetHistoryClient mocks base method.
func (*MockBean) SetMatchingClient ¶ added in v0.27.0
func (m *MockBean) SetMatchingClient(client v12.MatchingServiceClient)
SetMatchingClient mocks base method.
func (*MockBean) SetRemoteAdminClient ¶ added in v0.27.0
func (m *MockBean) SetRemoteAdminClient(cluster string, client v10.AdminServiceClient)
SetRemoteAdminClient mocks base method.
func (*MockBean) SetRemoteFrontendClient ¶ added in v0.27.0
func (m *MockBean) SetRemoteFrontendClient(cluster string, client v1.WorkflowServiceClient)
SetRemoteFrontendClient mocks base method.
type MockBeanMockRecorder ¶ added in v0.27.0
type MockBeanMockRecorder struct {
// contains filtered or unexported fields
}
MockBeanMockRecorder is the mock recorder for MockBean.
func (*MockBeanMockRecorder) GetFrontendClient ¶ added in v0.27.0
func (mr *MockBeanMockRecorder) GetFrontendClient() *gomock.Call
GetFrontendClient indicates an expected call of GetFrontendClient.
func (*MockBeanMockRecorder) GetHistoryClient ¶ added in v0.27.0
func (mr *MockBeanMockRecorder) GetHistoryClient() *gomock.Call
GetHistoryClient indicates an expected call of GetHistoryClient.
func (*MockBeanMockRecorder) GetMatchingClient ¶ added in v0.27.0
func (mr *MockBeanMockRecorder) GetMatchingClient(namespaceIDToName interface{}) *gomock.Call
GetMatchingClient indicates an expected call of GetMatchingClient.
func (*MockBeanMockRecorder) GetRemoteAdminClient ¶ added in v0.27.0
func (mr *MockBeanMockRecorder) GetRemoteAdminClient(cluster interface{}) *gomock.Call
GetRemoteAdminClient indicates an expected call of GetRemoteAdminClient.
func (*MockBeanMockRecorder) GetRemoteFrontendClient ¶ added in v0.27.0
func (mr *MockBeanMockRecorder) GetRemoteFrontendClient(cluster interface{}) *gomock.Call
GetRemoteFrontendClient indicates an expected call of GetRemoteFrontendClient.
func (*MockBeanMockRecorder) SetFrontendClient ¶ added in v0.27.0
func (mr *MockBeanMockRecorder) SetFrontendClient(client interface{}) *gomock.Call
SetFrontendClient indicates an expected call of SetFrontendClient.
func (*MockBeanMockRecorder) SetHistoryClient ¶ added in v0.27.0
func (mr *MockBeanMockRecorder) SetHistoryClient(client interface{}) *gomock.Call
SetHistoryClient indicates an expected call of SetHistoryClient.
func (*MockBeanMockRecorder) SetMatchingClient ¶ added in v0.27.0
func (mr *MockBeanMockRecorder) SetMatchingClient(client interface{}) *gomock.Call
SetMatchingClient indicates an expected call of SetMatchingClient.
func (*MockBeanMockRecorder) SetRemoteAdminClient ¶ added in v0.27.0
func (mr *MockBeanMockRecorder) SetRemoteAdminClient(cluster, client interface{}) *gomock.Call
SetRemoteAdminClient indicates an expected call of SetRemoteAdminClient.
func (*MockBeanMockRecorder) SetRemoteFrontendClient ¶ added in v0.27.0
func (mr *MockBeanMockRecorder) SetRemoteFrontendClient(cluster, client interface{}) *gomock.Call
SetRemoteFrontendClient indicates an expected call of SetRemoteFrontendClient.
type NamespaceIDToNameFunc ¶ added in v0.27.0
NamespaceIDToNameFunc maps a namespaceID to namespace name. Returns error when mapping is not possible.