826
requestID string,
827
links []*commonpb.Link,
829
>
event := b.createHistoryEvent(enumspb.EVENT_TYPE_WORKFLOW_EXECUTION_SIGNALED, b.timeSource.Now())
830
>
event.Attributes = &historypb.HistoryEvent_WorkflowExecutionSignaledEventAttributes{
831
>
WorkflowExecutionSignaledEventAttributes: &historypb.WorkflowExecutionSignaledEventAttributes{
832
>
SignalName: signalName,
833
>
Input: input,
834
>
Identity: identity,
835
>
Header: header,
836
>
ExternalWorkflowExecution: externalWorkflowExecution,
837
>
RequestId: requestID,
838
>
},
839
>
}
840
>
event.Links = links
841
>
return event
842
>
}
843
844
func (b *EventFactory) CreateStartChildWorkflowExecutionInitiatedEvent(