@@ -40,8 +40,8 @@ type OperationStore interface {
4040 OnNexusOperationFailed (ctx chasm.MutableContext , operation * Operation , cause * failurepb.Failure ) error
4141 OnNexusOperationTimedOut (ctx chasm.MutableContext , operation * Operation , cause * failurepb.Failure ) error
4242 OnNexusOperationCompleted (ctx chasm.MutableContext , operation * Operation , result * commonpb.Payload , links []* commonpb.Link ) error
43- // GetNexusOperationInvocationData loads invocation data (Input, Header, NexusLink) from the scheduled history event.
44- GetNexusOperationInvocationData (ctx chasm.Context , operation * Operation ) (InvocationData , error )
43+ // NexusOperationInvocationData loads invocation data (Input, Header, NexusLink) from the scheduled history event.
44+ NexusOperationInvocationData (ctx chasm.Context , operation * Operation ) (InvocationData , error )
4545}
4646
4747// Operation is a CHASM component that represents a Nexus operation.
@@ -170,7 +170,7 @@ func (o *Operation) loadStartArgs(
170170 // TODO: For standalone operations, load invocation data from the operation state.
171171 return startArgs {}, serviceerror .NewInternal ("no store available to load invocation data" )
172172 }
173- invocationData , err := store .GetNexusOperationInvocationData (ctx , o )
173+ invocationData , err := store .NexusOperationInvocationData (ctx , o )
174174 if err != nil {
175175 return startArgs {}, err
176176 }
0 commit comments