@@ -210,46 +210,66 @@ public ActionRegistration<TParam> RegisterAction<TParam>(
210
210
settings
211
211
) ;
212
212
213
- // ** PARAMLESS ** //
214
- public ParamlessRegistration RegisterParamless (
215
- FunctionTypeId functionTypeId ,
216
- Func < Workflow , Task < Result > > inner ,
217
- Settings ? settings = null
218
- ) => RegisterParamless (
219
- functionTypeId ,
220
- InnerToAsyncResultAdapters . ToInnerParamlessWithTaskResultReturn ( inner ) ,
221
- settings
222
- ) ;
223
-
224
- public ParamlessRegistration RegisterParamless (
225
- FunctionTypeId functionTypeId ,
226
- Func < Task < Result > > inner ,
227
- Settings ? settings = null
228
- ) => RegisterParamless (
229
- functionTypeId ,
230
- InnerToAsyncResultAdapters . ToInnerParamlessWithTaskResultReturn ( inner ) ,
231
- settings
232
- ) ;
213
+ // ** PARAMLESS ** //
214
+ public ParamlessRegistration RegisterParamless (
215
+ FunctionTypeId functionTypeId ,
216
+ Func < Task < Result > > inner ,
217
+ Settings ? settings = null
218
+ ) => RegisterParamless (
219
+ functionTypeId ,
220
+ InnerToAsyncResultAdapters . ToInnerParamlessWithTaskResultReturn ( inner ) ,
221
+ settings
222
+ ) ;
233
223
234
- public ParamlessRegistration RegisterParamless (
235
- FunctionTypeId functionTypeId ,
236
- Func < Workflow , Task > inner ,
237
- Settings ? settings = null
238
- ) => RegisterParamless (
239
- functionTypeId ,
240
- InnerToAsyncResultAdapters . ToInnerParamlessWithTaskResultReturn ( inner ) ,
241
- settings
242
- ) ;
224
+ public ParamlessRegistration RegisterParamless (
225
+ FunctionTypeId functionTypeId ,
226
+ Func < Workflow , Task < Result > > inner ,
227
+ Settings ? settings = null
228
+ ) => RegisterParamless (
229
+ functionTypeId ,
230
+ InnerToAsyncResultAdapters . ToInnerParamlessWithTaskResultReturn ( inner ) ,
231
+ settings
232
+ ) ;
233
+
234
+ public ParamlessRegistration RegisterParamless (
235
+ FunctionTypeId functionTypeId ,
236
+ Func < Task < Result < Unit > > > inner ,
237
+ Settings ? settings = null
238
+ ) => RegisterParamless (
239
+ functionTypeId ,
240
+ InnerToAsyncResultAdapters . ToInnerParamlessWithTaskResultReturn ( inner ) ,
241
+ settings
242
+ ) ;
243
+
244
+ public ParamlessRegistration RegisterParamless (
245
+ FunctionTypeId functionTypeId ,
246
+ Func < Workflow , Task < Result < Unit > > > inner ,
247
+ Settings ? settings = null
248
+ ) => RegisterParamless (
249
+ functionTypeId ,
250
+ InnerToAsyncResultAdapters . ToInnerParamlessWithTaskResultReturn ( inner ) ,
251
+ settings
252
+ ) ;
243
253
244
- public ParamlessRegistration RegisterParamless (
245
- FunctionTypeId functionTypeId ,
246
- Func < Task > inner ,
247
- Settings ? settings = null
248
- ) => RegisterParamless (
249
- functionTypeId ,
250
- InnerToAsyncResultAdapters . ToInnerParamlessWithTaskResultReturn ( inner ) ,
251
- settings
252
- ) ;
254
+ public ParamlessRegistration RegisterParamless (
255
+ FunctionTypeId functionTypeId ,
256
+ Func < Task > inner ,
257
+ Settings ? settings = null
258
+ ) => RegisterParamless (
259
+ functionTypeId ,
260
+ InnerToAsyncResultAdapters . ToInnerParamlessWithTaskResultReturn ( inner ) ,
261
+ settings
262
+ ) ;
263
+
264
+ public ParamlessRegistration RegisterParamless (
265
+ FunctionTypeId functionTypeId ,
266
+ Func < Workflow , Task > inner ,
267
+ Settings ? settings = null
268
+ ) => RegisterParamless (
269
+ functionTypeId ,
270
+ InnerToAsyncResultAdapters . ToInnerParamlessWithTaskResultReturn ( inner ) ,
271
+ settings
272
+ ) ;
253
273
254
274
// ** ASYNC W. RESULT AND WORKFLOW ** //
255
275
public FuncRegistration < TParam , TReturn > RegisterFunc < TParam , TReturn > (
0 commit comments