Uses of Interface
org.kiwiproject.consul.async.ConsulResponseCallback
Packages that use ConsulResponseCallback
-
Uses of ConsulResponseCallback in org.kiwiproject.consul
Methods in org.kiwiproject.consul with parameters of type ConsulResponseCallbackModifier and TypeMethodDescriptionvoidHealthClient.getAllServiceInstances(String service, QueryOptions queryOptions, ConsulResponseCallback<List<ServiceHealth>> callback) Asynchronously retrieves the healthchecks for all nodes in a given datacenter withQueryOptions.voidHealthClient.getChecksByState(State state, QueryOptions queryOptions, ConsulResponseCallback<List<HealthCheck>> callback) Asynchronously retrieves the healthchecks for a state in a given datacenter withQueryOptions.voidHealthClient.getHealthyServiceInstances(String service, QueryOptions queryOptions, ConsulResponseCallback<List<ServiceHealth>> callback) Asynchronously retrieves the healthchecks for all healthy service instances in a given datacenter withQueryOptions.voidCatalogClient.getNode(String node, QueryOptions queryOptions, ConsulResponseCallback<CatalogNode> callback) Asynchronously retrieves the single node for a given datacenter withQueryOptions.voidCatalogClient.getNodes(QueryOptions queryOptions, ConsulResponseCallback<List<Node>> callback) Asynchronously retrieves the nodes for a given datacenter withQueryOptions.voidAgentClient.getService(String id, QueryOptions queryOptions, ConsulResponseCallback<FullService> callback) Retrieves all information about a service.voidCatalogClient.getService(String service, QueryOptions queryOptions, ConsulResponseCallback<List<CatalogService>> callback) Asynchronously retrieves the single service for a given datacenter withQueryOptions.voidHealthClient.getServiceChecks(String service, QueryOptions queryOptions, ConsulResponseCallback<List<HealthCheck>> callback) Asynchronously retrieves the healthchecks for a service in a given datacenter withQueryOptions.voidCatalogClient.getServices(ConsulResponseCallback<Map<String, List<String>>> callback) Asynchronously retrieves the services for a given datacenter.voidCatalogClient.getServices(QueryOptions queryOptions, ConsulResponseCallback<Map<String, List<String>>> callback) Asynchronously retrieves the services for a given datacenter.voidKeyValueClient.getValue(String key, QueryOptions queryOptions, ConsulResponseCallback<Optional<Value>> callback) Asynchronously retrieves aValuefor a specific key from the key/value store.voidKeyValueClient.getValues(String key, QueryOptions queryOptions, ConsulResponseCallback<List<Value>> callback) Asynchronously retrieves a list ofValueobjects for a specific key from the key/value store. -
Uses of ConsulResponseCallback in org.kiwiproject.consul.cache
Methods in org.kiwiproject.consul.cache with parameters of type ConsulResponseCallbackModifier and TypeMethodDescriptionvoidConsulCache.CallbackConsumer.consume(BigInteger index, ConsulResponseCallback<List<V>> callback) -
Uses of ConsulResponseCallback in org.kiwiproject.consul.util
Methods in org.kiwiproject.consul.util with parameters of type ConsulResponseCallbackModifier and TypeMethodDescription<T> voidHttp.extractConsulResponse(retrofit2.Call<T> call, ConsulResponseCallback<T> callback, Integer... okCodes)