rsocket / rsocket-net

.NET implementation of RSocket
Apache License 2.0
252 stars 42 forks source link

Report error via OnError #30

Closed Giorgi closed 3 years ago

Giorgi commented 3 years ago

Motivation:

Currently, there is no way to get notified when an error is returned by RSocket server

Modifications:

Add RSocketException, report it in IRSocketProtocol.Error

Result:

You will be able to get the error returned by the server.

Giorgi commented 3 years ago

Implements #17