Uses of Class
rocks.xmpp.util.concurrent.AsyncResult
-
Packages that use AsyncResult Package Description rocks.xmpp.extensions.caps Provides classes for XEP-0115: Entity Capabilities.rocks.xmpp.extensions.disco Provides classes for XEP-0030: Service Discovery.rocks.xmpp.util.concurrent Provides classes for concurrency. -
-
Uses of AsyncResult in rocks.xmpp.extensions.caps
Methods in rocks.xmpp.extensions.caps that return AsyncResult Modifier and Type Method Description AsyncResult<DiscoverableInfo>EntityCapabilitiesManager. discoverCapabilities(Jid jid)Discovers capabilities for the given entity.default AsyncResult<Boolean>EntityCapabilitiesManager. isSupported(String feature, Jid jid)Checks whether a feature is supported by checking the capabilities set of the entity. -
Uses of AsyncResult in rocks.xmpp.extensions.disco
Methods in rocks.xmpp.extensions.disco that return AsyncResult Modifier and Type Method Description AsyncResult<DiscoverableInfo>AbstractServiceDiscoveryManager. discoverInformation(Jid jid)AsyncResult<DiscoverableInfo>ServiceDiscoveryManager. discoverInformation(Jid jid)Discovers information about another XMPP entity.AsyncResult<DiscoverableInfo>ServiceDiscoveryManager. discoverInformation(Jid jid, String node)Discovers information about another XMPP entity targeted at a specific node.AsyncResult<ItemNode>AbstractServiceDiscoveryManager. discoverItems(Jid jid)AsyncResult<ItemNode>AbstractServiceDiscoveryManager. discoverItems(Jid jid, String node)AsyncResult<ItemNode>AbstractServiceDiscoveryManager. discoverItems(Jid jid, ResultSetManagement resultSet)AsyncResult<ItemNode>ServiceDiscoveryManager. discoverItems(Jid jid)Discovers item associated with another XMPP entity.AsyncResult<ItemNode>ServiceDiscoveryManager. discoverItems(Jid jid, String node)Discovers item associated with another XMPP entity.AsyncResult<ItemNode>ServiceDiscoveryManager. discoverItems(Jid jid, String node, ResultSetManagement resultSetManagement)Discovers item associated with another XMPP entity.AsyncResult<ItemNode>ServiceDiscoveryManager. discoverItems(Jid jid, ResultSetManagement resultSet)Discovers item associated with another XMPP entity.AsyncResult<List<Item>>AbstractServiceDiscoveryManager. discoverServices(Jid jid, String feature)AsyncResult<List<Item>>AbstractServiceDiscoveryManager. discoverServices(Jid jid, Identity identity)AsyncResult<List<Item>>ServiceDiscoveryManager. discoverServices(Jid jid, String feature)Discovers a service on the given entity by its feature namespace.AsyncResult<List<Item>>ServiceDiscoveryManager. discoverServices(Jid jid, Identity identity)Discovers a service on the given entity by its identity. -
Uses of AsyncResult in rocks.xmpp.util.concurrent
Methods in rocks.xmpp.util.concurrent that return AsyncResult Modifier and Type Method Description AsyncResult<Void>AsyncResult. acceptEither(CompletionStage<? extends T> other, Consumer<? super T> action)AsyncResult<Void>AsyncResult. acceptEitherAsync(CompletionStage<? extends T> other, Consumer<? super T> action)AsyncResult<Void>AsyncResult. acceptEitherAsync(CompletionStage<? extends T> other, Consumer<? super T> action, Executor executor)<U> AsyncResult<U>AsyncResult. applyToEither(CompletionStage<? extends T> other, Function<? super T,U> fn)<U> AsyncResult<U>AsyncResult. applyToEitherAsync(CompletionStage<? extends T> other, Function<? super T,U> fn)<U> AsyncResult<U>AsyncResult. applyToEitherAsync(CompletionStage<? extends T> other, Function<? super T,U> fn, Executor executor)AsyncResult<T>AsyncResult. exceptionally(Function<Throwable,? extends T> fn)<U> AsyncResult<U>AsyncResult. handle(BiFunction<? super T,Throwable,? extends U> fn)<U> AsyncResult<U>AsyncResult. handleAsync(BiFunction<? super T,Throwable,? extends U> fn)<U> AsyncResult<U>AsyncResult. handleAsync(BiFunction<? super T,Throwable,? extends U> fn, Executor executor)AsyncResult<Void>AsyncResult. runAfterBoth(CompletionStage<?> other, Runnable action)AsyncResult<Void>AsyncResult. runAfterBothAsync(CompletionStage<?> other, Runnable action)AsyncResult<Void>AsyncResult. runAfterBothAsync(CompletionStage<?> other, Runnable action, Executor executor)AsyncResult<Void>AsyncResult. runAfterEither(CompletionStage<?> other, Runnable action)AsyncResult<Void>AsyncResult. runAfterEitherAsync(CompletionStage<?> other, Runnable action)AsyncResult<Void>AsyncResult. runAfterEitherAsync(CompletionStage<?> other, Runnable action, Executor executor)AsyncResult<Void>AsyncResult. thenAccept(Consumer<? super T> action)AsyncResult<Void>AsyncResult. thenAcceptAsync(Consumer<? super T> action)AsyncResult<Void>AsyncResult. thenAcceptAsync(Consumer<? super T> action, Executor executor)<U> AsyncResult<Void>AsyncResult. thenAcceptBoth(CompletionStage<? extends U> other, BiConsumer<? super T,? super U> action)<U> AsyncResult<Void>AsyncResult. thenAcceptBothAsync(CompletionStage<? extends U> other, BiConsumer<? super T,? super U> action)<U> AsyncResult<Void>AsyncResult. thenAcceptBothAsync(CompletionStage<? extends U> other, BiConsumer<? super T,? super U> action, Executor executor)<U> AsyncResult<U>AsyncResult. thenApply(Function<? super T,? extends U> fn)<U> AsyncResult<U>AsyncResult. thenApplyAsync(Function<? super T,? extends U> fn)<U> AsyncResult<U>AsyncResult. thenApplyAsync(Function<? super T,? extends U> fn, Executor executor)<U,V>
AsyncResult<V>AsyncResult. thenCombine(CompletionStage<? extends U> other, BiFunction<? super T,? super U,? extends V> fn)<U,V>
AsyncResult<V>AsyncResult. thenCombineAsync(CompletionStage<? extends U> other, BiFunction<? super T,? super U,? extends V> fn)<U,V>
AsyncResult<V>AsyncResult. thenCombineAsync(CompletionStage<? extends U> other, BiFunction<? super T,? super U,? extends V> fn, Executor executor)<U> AsyncResult<U>AsyncResult. thenCompose(Function<? super T,? extends CompletionStage<U>> fn)<U> AsyncResult<U>AsyncResult. thenComposeAsync(Function<? super T,? extends CompletionStage<U>> fn)<U> AsyncResult<U>AsyncResult. thenComposeAsync(Function<? super T,? extends CompletionStage<U>> fn, Executor executor)AsyncResult<Void>AsyncResult. thenRun(Runnable action)AsyncResult<Void>AsyncResult. thenRunAsync(Runnable action)AsyncResult<Void>AsyncResult. thenRunAsync(Runnable action, Executor executor)AsyncResult<T>AsyncResult. whenComplete(BiConsumer<? super T,? super Throwable> action)AsyncResult<T>AsyncResult. whenCompleteAsync(BiConsumer<? super T,? super Throwable> action)AsyncResult<T>AsyncResult. whenCompleteAsync(BiConsumer<? super T,? super Throwable> action, Executor executor)
-