File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
src/Worker/Core/DependencyInjection
test/Grpc.IntegrationTests Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -116,6 +116,8 @@ public static IDurableTaskWorkerBuilder UseVersioning(this IDurableTaskWorkerBui
116116 /// <param name="builder">The builder to set the builder target for.</param>
117117 /// <typeparam name="TOrchestrationFilter">The implementation of a <see cref="IOrchestrationFilter"/> that will be bound.</typeparam>
118118 /// <returns>The same <see cref="IDurableTaskWorkerBuilder"/> instance, allowing for method chaining.</returns>
119+
120+ [ Obsolete ( "Experimental" ) ]
119121 public static IDurableTaskWorkerBuilder UseOrchestrationFilter < TOrchestrationFilter > ( this IDurableTaskWorkerBuilder builder ) where TOrchestrationFilter : class , IOrchestrationFilter
120122 {
121123 Check . NotNull ( builder ) ;
@@ -129,6 +131,7 @@ public static IDurableTaskWorkerBuilder UseOrchestrationFilter<TOrchestrationFil
129131 /// <param name="builder">The builder to set the builder target for.</param>
130132 /// <param name="filter">The instance of an <see cref="IOrchestrationFilter"/> to use.</param>
131133 /// <returns>The same <see cref="IDurableTaskWorkerBuilder"/> instance, allowing for method chaining.</returns>
134+ [ Obsolete ( "Experimental" ) ]
132135 public static IDurableTaskWorkerBuilder UseOrchestrationFilter ( this IDurableTaskWorkerBuilder builder , IOrchestrationFilter filter )
133136 {
134137 Check . NotNull ( builder ) ;
Original file line number Diff line number Diff line change @@ -979,6 +979,7 @@ public async Task RunActivityWithTags()
979979 Assert . Equal ( "Hello from tagged activity, World!" , metadata . ReadOutputAs < string > ( ) ) ;
980980 }
981981
982+ [ Obsolete ( "Experimental" ) ]
982983 [ Fact ]
983984 public async Task FilterOrchestrationsByName ( )
984985 {
@@ -1008,6 +1009,7 @@ public async Task FilterOrchestrationsByName()
10081009 await Assert . ThrowsAsync < OperationCanceledException > ( async ( ) => await server . Client . WaitForInstanceCompletionAsync ( instanceId , new CancellationTokenSource ( TimeSpan . FromSeconds ( 5 ) ) . Token ) ) ;
10091010 }
10101011
1012+ [ Obsolete ( "Experimental" ) ]
10111013 [ Fact ]
10121014 public async Task FilterOrchestrationsByTag ( )
10131015 {
You can’t perform that action at this time.
0 commit comments