5 instantiations of SyncPoint
Microsoft.AspNetCore.Http.Connections.Tests (5)
HttpConnectionDispatcherTests.cs (4)
1294
var sync = new
SyncPoint
();
1332
var sync = new
SyncPoint
();
1369
var sync = new
SyncPoint
();
2560
SyncPoint streamCopySyncPoint = new
SyncPoint
();
src\Shared\SyncPoint\SyncPoint.cs (1)
57
localSyncPoints[i] = new
SyncPoint
();
18 references to SyncPoint
Microsoft.AspNetCore.Http.Connections.Tests (18)
HttpConnectionDispatcherTests.cs (9)
1208
private readonly
SyncPoint
_sync;
1210
public BlockingStream(
SyncPoint
sync, bool isSSE = false)
1294
var
sync = new SyncPoint();
1332
var
sync = new SyncPoint();
1369
var
sync = new SyncPoint();
2522
private readonly
SyncPoint
_syncPoint;
2524
public ControllableMemoryStream(
SyncPoint
syncPoint)
2560
SyncPoint
streamCopySyncPoint = new SyncPoint();
3750
private static void SetTransport(HttpContext context, HttpTransportType transportType,
SyncPoint
sync = null)
src\Shared\SyncPoint\SyncPoint.cs (5)
38
public static Func<Task> Create(out
SyncPoint
syncPoint)
49
/// <param name="syncPoints">The <see cref="
SyncPoint
"/> objects that can be used to coordinate the sync point</param>
51
public static Func<Task> Create(int count, out
SyncPoint
[] syncPoints)
54
var localSyncPoints = new
SyncPoint
[count];
71
var
syncPoint = localSyncPoints[counter];
TestWebSocketConnectionFeature.cs (4)
20
public TestWebSocketConnectionFeature(
SyncPoint
sync)
25
private readonly
SyncPoint
_sync;
61
private readonly
SyncPoint
_sync;
68
public WebSocketChannel(ChannelReader<WebSocketMessage> input, ChannelWriter<WebSocketMessage> output,
SyncPoint
sync = null)