Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ AsObserver< TInput >()

static IObserver< TInput > System.Threading.Tasks.Dataflow.DataflowBlock.AsObserver< TInput > ( this ITargetBlock< TInput > target)
inlinestatic

Definition at line 1709 of file DataflowBlock.cs.

1710 {
1711 if (target == null)
1712 {
1713 throw new ArgumentNullException("target");
1714 }
1715 return new TargetObserver<TInput>(target);
1716 }