I create android application which communicates with asp.net SignalR server. On server there is method which return string. To get return string value on java client I use following method
mHubConnection.invoke(String.class, "test", "test");
It shows invoke method return Single that yields a return value. I dont know about Single. How can I get return form single.
Thank in advance.