Created
June 21, 2022 11:35
-
-
Save neuecc/a493915d2d6f26a97b80430648aa9926 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class AsyncPublishCommand<T> : | |
ICommand, | |
IValueTaskSource, | |
IThreadPoolWorkItem, | |
IObjectPoolNode<AsyncPublishCommand<T>> | |
internal interface ICommand | |
{ | |
void Write(ProtocolWriter writer); | |
} | |
internal interface IObjectPoolNode<T> | |
{ | |
ref T? NextNode { get; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment