4 overrides of Schedule
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (1)
src\Servers\Kestrel\Transport.Sockets\src\Internal\IOQueue.cs (1)
16public override void Schedule(Action<object?> action, object? state)
Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (1)
Internal\IOQueue.cs (1)
16public override void Schedule(Action<object?> action, object? state)
System.IO.Pipelines (2)
System\IO\Pipelines\InlineScheduler.cs (1)
8public override void Schedule(Action<object?> action, object? state)
System\IO\Pipelines\ThreadPoolScheduler.netcoreapp.cs (1)
11public override void Schedule(Action<object?> action, object? state)
5 references to Schedule
ClientSample (1)
Tcp\SocketAwaitable.cs (1)
70_ioScheduler.Schedule(state => ((Action)state)(), continuation);
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.cs (1)
504ServiceContext.Scheduler.Schedule(state => ((HttpProtocol)state!).CancelRequestAbortedTokenCallback(), this);
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (1)
SchedulerBenchmark.cs (1)
105pipeScheduler.Schedule(_action, counter);
Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (1)
Internal\SocketAwaitableEventArgs.cs (1)
43_ioScheduler.Schedule(c, continuationState);
System.IO.Pipelines (1)
System\IO\Pipelines\PipeScheduler.cs (1)
28=> Schedule(action, state);