Wanpeng Li
Wanpeng Li
@afshinm hey! check this out and tell me what do you think about it.
> @wanlwanl got it. so you want to implement and replace your own search function? @afshinm Yes.
The hubConnection in this class will always reconnect once it's disconnected. So if you instantiate the class more and more, you will get more and more connections. I wonder whether...
What about the OutOfMemoryError problem? Is it mitigated?
I think you can reconnect, but you need to control the count of total connection. e.g. The simplest way to do it is to stop/dispose the hub connection in the...
In Persistent mode, we use [ServiceProtocol](https://github.com/Azure/azure-signalr/blob/dev/src/Microsoft.Azure.SignalR.Protocols/ServiceProtocol.cs) to let server communicate with signalr service. In Transient mode, actually we send http request to call REST API. We don't use signalr hub...
I see, you not only need to add `AddMessagePackProtocol`, but also have custom options on it. We don't support it in Management SDK.
No, we don't have a plan to change, since we also have a feature of upstream, when client send mesaage with special hub protocol, the signalr service cannot understand the...
Signalr service will only count outbound message (message that is go out of signalr service) for the protocol of client. So you can add message pack protocol to your client...