Skip to content

Commit 72e1316

Browse files
Removing solution items (duplicate with Team Explorer). Interim updates to RPC Requests.
1 parent 2396923 commit 72e1316

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

RSocket.RPC/RSocketService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ protected async Task<ReadOnlySequence<byte>> __RequestResponse(ReadOnlySequence<
3535

3636
//TODO Ask about semantics of this - should it execute the server call before subscription?
3737

38-
protected async Task<ReadOnlySequence<byte>> __RequestStream<TResult>(string service, string method, ReadOnlySequence<byte> data, ReadOnlySequence<byte> metadata = default, ReadOnlySequence<byte> tracing = default)
38+
protected async Task<ReadOnlySequence<byte>> __RequestStream<TResult>(ReadOnlySequence<byte> data, ReadOnlySequence<byte> metadata = default, ReadOnlySequence<byte> tracing = default, string service = default, [CallerMemberName]string method = default)
3939
{
4040
var receiver = new Receiver();
4141
await Client.RequestStream(receiver, data, new RemoteProcedureCallMetadata(service, method, metadata, tracing), initial: 3); //TODO Policy!!

RSocket.sln

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RSocket.ProtobufNet", "RSoc
1818
EndProject
1919
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RSocket.RPC", "RSocket.RPC\RSocket.RPC.csproj", "{133CD4BB-1F1C-4BD9-AFFF-D6B7DF59A2B2}"
2020
EndProject
21-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{E01A7BD9-16F7-4B6D-B273-F5FE5C319259}"
22-
ProjectSection(SolutionItems) = preProject
23-
.gitignore = .gitignore
24-
.travis.yml = .travis.yml
25-
EndProjectSection
26-
EndProject
2721
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RSocketRPCSample", "RSocketRPCSample\RSocketRPCSample.csproj", "{8B113782-0E9C-4E3F-A1F4-865F01EE12DD}"
2822
EndProject
2923
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RSocket.RPC.Tests", "RSocket.RPC.Tests\RSocket.RPC.Tests.csproj", "{BD527265-1280-469C-9BF5-AC51E4474254}"

0 commit comments

Comments
 (0)