@@ -60,9 +60,9 @@ public interface IMachineRuntime : IDisposable
6060 /// </summary>
6161 /// <param name="type">Type of the machine.</param>
6262 /// <param name="e">Optional event used during initialization.</param>
63- /// <param name="operationGroupId ">Optional operation group id .</param>
63+ /// <param name="opGroupId ">Optional id that can be used to identify this operation .</param>
6464 /// <returns>The result is the machine id.</returns>
65- MachineId CreateMachine ( Type type , Event e = null , Guid operationGroupId = default ) ;
65+ MachineId CreateMachine ( Type type , Event e = null , Guid opGroupId = default ) ;
6666
6767 /// <summary>
6868 /// Creates a new machine of the specified <see cref="Type"/> and name, and
@@ -72,9 +72,9 @@ public interface IMachineRuntime : IDisposable
7272 /// <param name="type">Type of the machine.</param>
7373 /// <param name="machineName">Optional machine name used for logging.</param>
7474 /// <param name="e">Optional event used during initialization.</param>
75- /// <param name="operationGroupId ">Optional operation group id .</param>
75+ /// <param name="opGroupId ">Optional id that can be used to identify this operation .</param>
7676 /// <returns>The result is the machine id.</returns>
77- MachineId CreateMachine ( Type type , string machineName , Event e = null , Guid operationGroupId = default ) ;
77+ MachineId CreateMachine ( Type type , string machineName , Event e = null , Guid opGroupId = default ) ;
7878
7979 /// <summary>
8080 /// Creates a new machine of the specified type, using the specified <see cref="MachineId"/>.
@@ -84,9 +84,9 @@ public interface IMachineRuntime : IDisposable
8484 /// <param name="mid">Unbound machine id.</param>
8585 /// <param name="type">Type of the machine.</param>
8686 /// <param name="e">Optional event used during initialization.</param>
87- /// <param name="operationGroupId ">Optional operation group id .</param>
87+ /// <param name="opGroupId ">Optional id that can be used to identify this operation .</param>
8888 /// <returns>The result is the machine id.</returns>
89- MachineId CreateMachine ( MachineId mid , Type type , Event e = null , Guid operationGroupId = default ) ;
89+ MachineId CreateMachine ( MachineId mid , Type type , Event e = null , Guid opGroupId = default ) ;
9090
9191 /// <summary>
9292 /// Creates a new machine of the specified <see cref="Type"/> and with the
@@ -96,9 +96,9 @@ public interface IMachineRuntime : IDisposable
9696 /// </summary>
9797 /// <param name="type">Type of the machine.</param>
9898 /// <param name="e">Optional event used during initialization.</param>
99- /// <param name="operationGroupId ">Optional operation group id .</param>
99+ /// <param name="opGroupId ">Optional id that can be used to identify this operation .</param>
100100 /// <returns>Task that represents the asynchronous operation. The task result is the machine id.</returns>
101- Task < MachineId > CreateMachineAndExecuteAsync ( Type type , Event e = null , Guid operationGroupId = default ) ;
101+ Task < MachineId > CreateMachineAndExecuteAsync ( Type type , Event e = null , Guid opGroupId = default ) ;
102102
103103 /// <summary>
104104 /// Creates a new machine of the specified <see cref="Type"/> and name, and with
@@ -109,9 +109,9 @@ public interface IMachineRuntime : IDisposable
109109 /// <param name="type">Type of the machine.</param>
110110 /// <param name="machineName">Optional machine name used for logging.</param>
111111 /// <param name="e">Optional event used during initialization.</param>
112- /// <param name="operationGroupId ">Optional operation group id .</param>
112+ /// <param name="opGroupId ">Optional id that can be used to identify this operation .</param>
113113 /// <returns>Task that represents the asynchronous operation. The task result is the machine id.</returns>
114- Task < MachineId > CreateMachineAndExecuteAsync ( Type type , string machineName , Event e = null , Guid operationGroupId = default ) ;
114+ Task < MachineId > CreateMachineAndExecuteAsync ( Type type , string machineName , Event e = null , Guid opGroupId = default ) ;
115115
116116 /// <summary>
117117 /// Creates a new machine of the specified <see cref="Type"/>, using the specified
@@ -123,9 +123,9 @@ public interface IMachineRuntime : IDisposable
123123 /// <param name="mid">Unbound machine id.</param>
124124 /// <param name="type">Type of the machine.</param>
125125 /// <param name="e">Optional event used during initialization.</param>
126- /// <param name="operationGroupId ">Optional operation group id .</param>
126+ /// <param name="opGroupId ">Optional id that can be used to identify this operation .</param>
127127 /// <returns>Task that represents the asynchronous operation. The task result is the machine id.</returns>
128- Task < MachineId > CreateMachineAndExecuteAsync ( MachineId mid , Type type , Event e = null , Guid operationGroupId = default ) ;
128+ Task < MachineId > CreateMachineAndExecuteAsync ( MachineId mid , Type type , Event e = null , Guid opGroupId = default ) ;
129129
130130 /// <summary>
131131 /// Creates a new machine of the specified <see cref="Type"/> and with the
@@ -135,10 +135,10 @@ public interface IMachineRuntime : IDisposable
135135 /// </summary>
136136 /// <param name="type">Type of the machine.</param>
137137 /// <param name="e">Optional event used during initialization.</param>
138- /// <param name="operationGroupId ">Optional operation group id .</param>
138+ /// <param name="opGroupId ">Optional id that can be used to identify this operation .</param>
139139 /// <returns>Task that represents the asynchronous operation. The task result is the machine id.</returns>
140140 [ Obsolete ( "Please use IMachineRuntime.CreateMachineAndExecuteAsync(...) instead." ) ]
141- Task < MachineId > CreateMachineAndExecute ( Type type , Event e = null , Guid operationGroupId = default ) ;
141+ Task < MachineId > CreateMachineAndExecute ( Type type , Event e = null , Guid opGroupId = default ) ;
142142
143143 /// <summary>
144144 /// Creates a new machine of the specified <see cref="Type"/> and name, and with
@@ -149,10 +149,10 @@ public interface IMachineRuntime : IDisposable
149149 /// <param name="type">Type of the machine.</param>
150150 /// <param name="machineName">Optional machine name used for logging.</param>
151151 /// <param name="e">Optional event used during initialization.</param>
152- /// <param name="operationGroupId ">Optional operation group id .</param>
152+ /// <param name="opGroupId ">Optional id that can be used to identify this operation .</param>
153153 /// <returns>Task that represents the asynchronous operation. The task result is the machine id.</returns>
154154 [ Obsolete ( "Please use IMachineRuntime.CreateMachineAndExecuteAsync(...) instead." ) ]
155- Task < MachineId > CreateMachineAndExecute ( Type type , string machineName , Event e = null , Guid operationGroupId = default ) ;
155+ Task < MachineId > CreateMachineAndExecute ( Type type , string machineName , Event e = null , Guid opGroupId = default ) ;
156156
157157 /// <summary>
158158 /// Creates a new machine of the specified <see cref="Type"/>, using the specified
@@ -164,44 +164,44 @@ public interface IMachineRuntime : IDisposable
164164 /// <param name="mid">Unbound machine id.</param>
165165 /// <param name="type">Type of the machine.</param>
166166 /// <param name="e">Optional event used during initialization.</param>
167- /// <param name="operationGroupId ">Optional operation group id .</param>
167+ /// <param name="opGroupId ">Optional id that can be used to identify this operation .</param>
168168 /// <returns>Task that represents the asynchronous operation. The task result is the machine id.</returns>
169169 [ Obsolete ( "Please use IMachineRuntime.CreateMachineAndExecuteAsync(...) instead." ) ]
170- Task < MachineId > CreateMachineAndExecute ( MachineId mid , Type type , Event e = null , Guid operationGroupId = default ) ;
170+ Task < MachineId > CreateMachineAndExecute ( MachineId mid , Type type , Event e = null , Guid opGroupId = default ) ;
171171
172172 /// <summary>
173173 /// Sends an asynchronous <see cref="Event"/> to a machine.
174174 /// </summary>
175175 /// <param name="target">The id of the target machine.</param>
176176 /// <param name="e">The event to send.</param>
177- /// <param name="operationGroupId ">Optional operation group id .</param>
177+ /// <param name="opGroupId ">Optional id that can be used to identify this operation .</param>
178178 /// <param name="options">Optional configuration of a send operation.</param>
179- void SendEvent ( MachineId target , Event e , Guid operationGroupId = default , SendOptions options = null ) ;
179+ void SendEvent ( MachineId target , Event e , Guid opGroupId = default , SendOptions options = null ) ;
180180
181181 /// <summary>
182182 /// Sends an <see cref="Event"/> to a machine. Returns immediately if the target machine was already
183183 /// running. Otherwise blocks until the machine handles the event and reaches quiescense.
184184 /// </summary>
185185 /// <param name="target">The id of the target machine.</param>
186186 /// <param name="e">The event to send.</param>
187- /// <param name="operationGroupId ">Optional operation group id .</param>
187+ /// <param name="opGroupId ">Optional id that can be used to identify this operation .</param>
188188 /// <param name="options">Optional configuration of a send operation.</param>
189189 /// <returns>Task that represents the asynchronous operation. The task result is true if
190190 /// the event was handled, false if the event was only enqueued.</returns>
191- Task < bool > SendEventAndExecuteAsync ( MachineId target , Event e , Guid operationGroupId = default , SendOptions options = null ) ;
191+ Task < bool > SendEventAndExecuteAsync ( MachineId target , Event e , Guid opGroupId = default , SendOptions options = null ) ;
192192
193193 /// <summary>
194194 /// Sends an <see cref="Event"/> to a machine. Returns immediately if the target machine was already
195195 /// running. Otherwise blocks until the machine handles the event and reaches quiescense.
196196 /// </summary>
197197 /// <param name="target">The id of the target machine.</param>
198198 /// <param name="e">The event to send.</param>
199- /// <param name="operationGroupId ">Optional operation group id .</param>
199+ /// <param name="opGroupId ">Optional id that can be used to identify this operation .</param>
200200 /// <param name="options">Optional configuration of a send operation.</param>
201201 /// <returns>Task that represents the asynchronous operation. The task result is true if
202202 /// the event was handled, false if the event was only enqueued.</returns>
203203 [ Obsolete ( "Please use IMachineRuntime.SendEventAndExecuteAsync(...) instead." ) ]
204- Task < bool > SendEventAndExecute ( MachineId target , Event e , Guid operationGroupId = default , SendOptions options = null ) ;
204+ Task < bool > SendEventAndExecute ( MachineId target , Event e , Guid opGroupId = default , SendOptions options = null ) ;
205205
206206 /// <summary>
207207 /// Registers a new specification monitor of the specified <see cref="Type"/>.
0 commit comments