@@ -15,7 +15,7 @@ internal ControlPanel(
15
15
Invoker < Unit , Unit > invoker ,
16
16
InvocationHelper < Unit , Unit > invocationHelper ,
17
17
FlowId flowId , StoredId storedId ,
18
- ReplicaId ? owner ,
18
+ ReplicaId ? ownerReplica ,
19
19
Status status , int epoch , long expires ,
20
20
ExistingEffects effects ,
21
21
ExistingStates states , ExistingMessages messages , ExistingSemaphores semaphores ,
@@ -24,7 +24,7 @@ internal ControlPanel(
24
24
UtcNow utcNow
25
25
) : base (
26
26
invoker , invocationHelper ,
27
- flowId , storedId , owner , status , epoch ,
27
+ flowId , storedId , ownerReplica , status , epoch ,
28
28
expires , innerParam : Unit . Instance , innerResult : Unit . Instance , effects ,
29
29
states , messages , registeredTimeouts , semaphores , correlations , fatalWorkflowException ,
30
30
utcNow
@@ -59,7 +59,7 @@ internal ControlPanel(
59
59
Invoker < TParam , Unit > invoker ,
60
60
InvocationHelper < TParam , Unit > invocationHelper ,
61
61
FlowId flowId , StoredId storedId ,
62
- ReplicaId ? owner ,
62
+ ReplicaId ? ownerReplica ,
63
63
Status status , int epoch , long expires , TParam innerParam ,
64
64
ExistingEffects effects ,
65
65
ExistingStates states , ExistingMessages messages , ExistingSemaphores semaphores ,
@@ -68,7 +68,7 @@ internal ControlPanel(
68
68
UtcNow utcNow
69
69
) : base (
70
70
invoker , invocationHelper ,
71
- flowId , storedId , owner , status , epoch ,
71
+ flowId , storedId , ownerReplica , status , epoch ,
72
72
expires , innerParam , innerResult : Unit . Instance , effects ,
73
73
states , messages , registeredTimeouts , semaphores , correlations , fatalWorkflowException ,
74
74
utcNow
@@ -108,15 +108,15 @@ public class ControlPanel<TParam, TReturn> : BaseControlPanel<TParam, TReturn> w
108
108
internal ControlPanel (
109
109
Invoker < TParam , TReturn > invoker ,
110
110
InvocationHelper < TParam , TReturn > invocationHelper ,
111
- FlowId flowId , StoredId storedId , ReplicaId ? owner , Status status , int epoch ,
111
+ FlowId flowId , StoredId storedId , ReplicaId ? ownerReplica , Status status , int epoch ,
112
112
long expires , TParam innerParam ,
113
113
TReturn ? innerResult ,
114
114
ExistingEffects effects , ExistingStates states , ExistingMessages messages , ExistingSemaphores semaphores ,
115
115
ExistingRegisteredTimeouts registeredTimeouts , Correlations correlations , FatalWorkflowException ? fatalWorkflowException ,
116
116
UtcNow utcNow
117
117
) : base (
118
118
invoker , invocationHelper ,
119
- flowId , storedId , owner , status , epoch , expires ,
119
+ flowId , storedId , ownerReplica , status , epoch , expires ,
120
120
innerParam , innerResult , effects , states , messages ,
121
121
registeredTimeouts , semaphores , correlations , fatalWorkflowException ,
122
122
utcNow
@@ -163,7 +163,7 @@ internal BaseControlPanel(
163
163
InvocationHelper < TParam , TReturn > invocationHelper ,
164
164
FlowId flowId ,
165
165
StoredId storedId ,
166
- ReplicaId ? owner ,
166
+ ReplicaId ? ownerReplica ,
167
167
Status status ,
168
168
int epoch ,
169
169
long expires ,
@@ -182,7 +182,7 @@ internal BaseControlPanel(
182
182
_invocationHelper = invocationHelper ;
183
183
FlowId = flowId ;
184
184
StoredId = storedId ;
185
- Owner = owner ;
185
+ OwnerReplica = ownerReplica ;
186
186
Status = status ;
187
187
Epoch = epoch ;
188
188
LeaseExpiration = expires == long . MaxValue
@@ -204,7 +204,7 @@ internal BaseControlPanel(
204
204
205
205
public FlowId FlowId { get ; }
206
206
public StoredId StoredId { get ; }
207
- public ReplicaId ? Owner { get ; }
207
+ public ReplicaId ? OwnerReplica { get ; }
208
208
public Status Status { get ; private set ; }
209
209
protected UtcNow UtcNow { get ; }
210
210
0 commit comments