6 references to _callbackCompleted
Microsoft.AspNetCore.Server.Kestrel.Core (6)
Internal\Infrastructure\StreamCloseAwaitable.cs (6)
15
private Action? _callback =
_callbackCompleted
;
18
public bool IsCompleted => ReferenceEquals(_callback,
_callbackCompleted
);
22
Debug.Assert(ReferenceEquals(_callback,
_callbackCompleted
));
29
if (ReferenceEquals(_callback,
_callbackCompleted
) ||
30
ReferenceEquals(Interlocked.CompareExchange(ref _callback, continuation, null),
_callbackCompleted
))
43
Interlocked.Exchange(ref _callback,
_callbackCompleted
)?.Invoke();