We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ec7651 commit c76bddfCopy full SHA for c76bddf
RSocket.Core/RSocketClient.cs
@@ -22,7 +22,7 @@ public RSocketClient(IRSocketTransport transport, RSocketOptions options = defau
22
23
public Task ConnectAsync(RSocketOptions options = default, byte[] data = default, byte[] metadata = default) => ConnectAsync(options ?? RSocketOptions.Default, data: data == default ? default : new ReadOnlySequence<byte>(data), metadata: metadata == default ? default : new ReadOnlySequence<byte>(metadata));
24
25
- async Task ConnectAsync(RSocketOptions options, ReadOnlySequence<byte> metadata, ReadOnlySequence<byte> data)
+ public async Task ConnectAsync(RSocketOptions options, ReadOnlySequence<byte> metadata, ReadOnlySequence<byte> data)
26
{
27
await Transport.StartAsync();
28
Handler = Connect(CancellationToken.None);
0 commit comments