Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrNoHistoryRawEventBatches indicate that number of batches of history raw events is of size 0 ErrNoHistoryRawEventBatches = errors.NewInternalFailureError("no history batches are returned") // ErrFirstHistoryRawEventBatch indicate that first batch of history raw events is malformed ErrFirstHistoryRawEventBatch = errors.NewInternalFailureError("encounter malformed first history batch") // ErrUnknownEncodingType indicate that the encoding type is unknown ErrUnknownEncodingType = errors.NewInternalFailureError("unknown encoding type") )
Functions ¶
This section is empty.
Types ¶
type HistoryRereplicator ¶
type HistoryRereplicator interface { // SendMultiWorkflowHistory sends multiple run IDs's history events to remote SendMultiWorkflowHistory(domainID string, workflowID string, beginningRunID string, beginningFirstEventID int64, endingRunID string, endingNextEventID int64) error }
HistoryRereplicator is the interface for resending history events to remote
type HistoryRereplicatorImpl ¶
type HistoryRereplicatorImpl struct {
// contains filtered or unexported fields
}
HistoryRereplicatorImpl is the implementation of HistoryRereplicator
func NewHistoryRereplicator ¶
func NewHistoryRereplicator(targetClusterName string, domainCache cache.DomainCache, adminClient a.Client, historyReplicationFn historyReplicationFn, serializer persistence.PayloadSerializer, replicationTimeout time.Duration, logger log.Logger) *HistoryRereplicatorImpl
NewHistoryRereplicator create a new HistoryRereplicatorImpl
func (*HistoryRereplicatorImpl) SendMultiWorkflowHistory ¶
func (h *HistoryRereplicatorImpl) SendMultiWorkflowHistory(domainID string, workflowID string, beginningRunID string, beginningFirstEventID int64, endingRunID string, endingNextEventID int64) (err error)
SendMultiWorkflowHistory sends multiple run IDs's history events to remote
type MockHistoryRereplicator ¶
MockHistoryRereplicator is an autogenerated mock type for the HistoryRereplicator type
func (*MockHistoryRereplicator) SendMultiWorkflowHistory ¶
func (_m *MockHistoryRereplicator) SendMultiWorkflowHistory(_a0 string, _a1 string, _a2 string, _a3 int64, _a4 string, _a5 int64) error
SendMultiWorkflowHistory provides a mock function with given fields: _a0, _a1, _a2, _a3, _a4, _a5
Click to show internal directories.
Click to hide internal directories.