Uses of Class
org.opendaylight.restconf.common.errors.RestconfFuture
Packages that use RestconfFuture
-
Uses of RestconfFuture in org.opendaylight.restconf.common.errors
Subclasses of RestconfFuture in org.opendaylight.restconf.common.errorsModifier and TypeClassDescriptionfinal classARestconfFuturewhich allows the result to be set viaSettableRestconfFuture.set(Object)andSettableRestconfFuture.setFailure(RestconfDocumentedException).Methods in org.opendaylight.restconf.common.errors that return RestconfFutureModifier and TypeMethodDescriptionfinal @NonNull RestconfFuture<V>RestconfFuture.addCallback(RestconfCallback<? super V> callback) Add a callback to invoke when this future completes, or immediately if it is already complete.static <V> @NonNull RestconfFuture<V>RestconfFuture.failed(RestconfDocumentedException cause) static <V> @NonNull RestconfFuture<V>RestconfFuture.of(V value) final <T> @NonNull RestconfFuture<T>Transform the result of this future using the specified function.