@@ -1310,7 +1310,6 @@ public static boolean isEveryHandlerFinished() {
1310
1310
*
1311
1311
* @param service interface that given service implements.
1312
1312
*/
1313
- @ Experimental
1314
1313
public static <T > T newNexusServiceStub (Class <T > service ) {
1315
1314
return WorkflowInternal .newNexusServiceStub (service , null );
1316
1315
}
@@ -1322,7 +1321,6 @@ public static <T> T newNexusServiceStub(Class<T> service) {
1322
1321
* @param service interface that given service implements.
1323
1322
* @param options options passed to the Nexus service.
1324
1323
*/
1325
- @ Experimental
1326
1324
public static <T > T newNexusServiceStub (Class <T > service , NexusServiceOptions options ) {
1327
1325
return WorkflowInternal .newNexusServiceStub (service , options );
1328
1326
}
@@ -1333,7 +1331,6 @@ public static <T> T newNexusServiceStub(Class<T> service, NexusServiceOptions op
1333
1331
* @param service name of the service the operation is part of.
1334
1332
* @param options options passed to the Nexus service.
1335
1333
*/
1336
- @ Experimental
1337
1334
public static NexusServiceStub newUntypedNexusServiceStub (
1338
1335
String service , NexusServiceOptions options ) {
1339
1336
return WorkflowInternal .newUntypedNexusServiceStub (service , options );
@@ -1347,7 +1344,6 @@ public static NexusServiceStub newUntypedNexusServiceStub(
1347
1344
* @param arg operation argument
1348
1345
* @return OperationHandle a handle to the operation.
1349
1346
*/
1350
- @ Experimental
1351
1347
public static <T , R > NexusOperationHandle <R > startNexusOperation (
1352
1348
Functions .Func1 <T , R > operation , T arg ) {
1353
1349
return WorkflowInternal .startNexusOperation (operation , arg );
@@ -1360,7 +1356,6 @@ public static <T, R> NexusOperationHandle<R> startNexusOperation(
1360
1356
* #newNexusServiceStub(Class)}.
1361
1357
* @return OperationHandle a handle to the operation.
1362
1358
*/
1363
- @ Experimental
1364
1359
public static <R > NexusOperationHandle <R > startNexusOperation (Functions .Func <R > operation ) {
1365
1360
return WorkflowInternal .startNexusOperation (operation );
1366
1361
}
0 commit comments