Modifier and Type | Class and Description |
---|---|
class |
UpdateableCancellableFuture<V>
An updateable SignalRFuture that, when cancelled, triggers cancellation on an
internal instance
|
Modifier and Type | Method and Description |
---|---|
SignalRFuture<V> |
SignalRFuture.done(Action<V> action)
Handles the completion of the Future.
|
SignalRFuture<V> |
SignalRFuture.onError(ErrorCallback errorCallback)
Handles error during the execution of the Future.
|
SignalRFuture<java.lang.Void> |
Connection.send(java.lang.Object object)
Sends a serialized object
|
SignalRFuture<java.lang.Void> |
ConnectionBase.send(java.lang.String data)
Sends data using the connection
|
SignalRFuture<java.lang.Void> |
Connection.send(java.lang.String data) |
SignalRFuture<java.lang.Void> |
Connection.start()
Starts the connection using the best available transport
|
SignalRFuture<java.lang.Void> |
ConnectionBase.start(microsoft.aspnet.signalr.client.transport.ClientTransport transport)
Starts the connection
|
SignalRFuture<java.lang.Void> |
Connection.start(microsoft.aspnet.signalr.client.transport.ClientTransport transport) |
Modifier and Type | Method and Description |
---|---|
static void |
FutureHelper.copyHandlers(microsoft.aspnet.signalr.client.http.HttpConnectionFuture sourceFuture,
SignalRFuture<?> targetFuture)
Copy the Cancellation and Error handlers between two SignalRFuture
instances, where the source is an HttpConnectionFuture
|
static void |
FutureHelper.copyHandlers(SignalRFuture<?> sourceFuture,
SignalRFuture<?> targetFuture)
Copy the Cancellation and Error handlers between two SignalRFuture
instances
|
static void |
FutureHelper.copyHandlers(SignalRFuture<?> sourceFuture,
SignalRFuture<?> targetFuture)
Copy the Cancellation and Error handlers between two SignalRFuture
instances
|
void |
UpdateableCancellableFuture.setFuture(SignalRFuture<?> token) |
Constructor and Description |
---|
UpdateableCancellableFuture(SignalRFuture<?> token) |