/*
 * Copyright (c) 2011-2016 The original author or authors
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and Apache License v2.0 which accompanies this distribution.
 *
 *      The Eclipse Public License is available at
 *      http://www.eclipse.org/legal/epl-v10.html
 *
 *      The Apache License v2.0 is available at
 *      http://www.opensource.org/licenses/apache2.0.php
 *
 * You may elect to redistribute this code under either of these licenses.
 */

package io.vertx.servicediscovery.types;

import io.vertx.codegen.annotations.VertxGen;
import io.vertx.core.AsyncResult;
import io.vertx.core.Future;
import io.vertx.core.Handler;
import io.vertx.core.json.JsonObject;
import io.vertx.redis.RedisClient;
import io.vertx.servicediscovery.Record;
import io.vertx.servicediscovery.ServiceDiscovery;
import io.vertx.servicediscovery.spi.ServiceType;

import java.util.Objects;
import java.util.function.Function;

Service type for Redis data source.
Author:Eric Zhao
/** * Service type for Redis data source. * * @author <a href="http://www.sczyh30.com">Eric Zhao</a> */
@VertxGen public interface RedisDataSource extends ServiceType { String TYPE = "redis";
Convenient method to create a record for a Redis data source.
Params:
  • name – the service name
  • location – the location of the service (e.g. url, port...)
  • metadata – additional metadata
Returns:the created record
/** * Convenient method to create a record for a Redis data source. * * @param name the service name * @param location the location of the service (e.g. url, port...) * @param metadata additional metadata * @return the created record */
static Record createRecord(String name, JsonObject location, JsonObject metadata) { Objects.requireNonNull(name); Objects.requireNonNull(location); Record record = new Record().setName(name) .setType(TYPE) .setLocation(location); if (metadata != null) { record.setMetadata(metadata); } return record; }
Convenient method that looks for a Redis data source and provides the configured RedisClient. The async result is marked as failed is there are no matching services, or if the lookup fails.
Params:
  • discovery – The service discovery instance
  • filter – The filter, optional
  • resultHandler – The result handler
/** * Convenient method that looks for a Redis data source and provides the configured {@link io.vertx.redis.RedisClient}. * The async result is marked as failed is there are no matching services, or if the lookup fails. * * @param discovery The service discovery instance * @param filter The filter, optional * @param resultHandler The result handler */
static void getRedisClient(ServiceDiscovery discovery, JsonObject filter, Handler<AsyncResult<RedisClient>> resultHandler) { discovery.getRecord(filter, ar -> { if (ar.failed() || ar.result() == null) { resultHandler.handle(Future.failedFuture("No matching record")); } else { resultHandler.handle(Future.succeededFuture(discovery.<RedisClient>getReference(ar.result()).get())); } }); }
Convenient method that looks for a Redis data source and provides the configured RedisClient. The async result is marked as failed is there are no matching services, or if the lookup fails.
Params:
  • discovery – The service discovery instance
  • filter – The filter, cannot be null
  • resultHandler – The result handler
/** * Convenient method that looks for a Redis data source and provides the configured {@link io.vertx.redis.RedisClient}. * The async result is marked as failed is there are no matching services, or if the lookup fails. * * @param discovery The service discovery instance * @param filter The filter, cannot be {@code null} * @param resultHandler The result handler */
static void getRedisClient(ServiceDiscovery discovery, Function<Record, Boolean> filter, Handler<AsyncResult<RedisClient>> resultHandler) { discovery.getRecord(filter, ar -> { if (ar.failed() || ar.result() == null) { resultHandler.handle(Future.failedFuture("No matching record")); } else { resultHandler.handle(Future.succeededFuture(discovery.<RedisClient>getReference(ar.result()).get())); } }); }
Convenient method that looks for a Redis data source and provides the configured RedisClient. The async result is marked as failed is there are no matching services, or if the lookup fails.
Params:
  • discovery – The service discovery instance
  • filter – The filter, optional
  • consumerConfiguration – The additional consumer configuration
  • resultHandler – The result handler
/** * Convenient method that looks for a Redis data source and provides the configured {@link io.vertx.redis.RedisClient}. * The async result is marked as failed is there are no matching services, or if the lookup fails. * * @param discovery The service discovery instance * @param filter The filter, optional * @param consumerConfiguration The additional consumer configuration * @param resultHandler The result handler */
static void getRedisClient(ServiceDiscovery discovery, JsonObject filter, JsonObject consumerConfiguration, Handler<AsyncResult<RedisClient>> resultHandler) { discovery.getRecord(filter, ar -> { if (ar.failed() || ar.result() == null) { resultHandler.handle(Future.failedFuture("No matching record")); } else { resultHandler.handle(Future.succeededFuture( discovery.<RedisClient>getReferenceWithConfiguration(ar.result(), consumerConfiguration).get())); } }); }
Convenient method that looks for a Redis data source and provides the configured RedisClient. The async result is marked as failed is there are no matching services, or if the lookup fails.
Params:
  • discovery – The service discovery instance
  • filter – The filter, cannot be null
  • consumerConfiguration – The additional consumer configuration
  • resultHandler – The result handler
/** * Convenient method that looks for a Redis data source and provides the configured {@link io.vertx.redis.RedisClient}. * The async result is marked as failed is there are no matching services, or if the lookup fails. * * @param discovery The service discovery instance * @param filter The filter, cannot be {@code null} * @param consumerConfiguration The additional consumer configuration * @param resultHandler The result handler */
static void getRedisClient(ServiceDiscovery discovery, Function<Record, Boolean> filter, JsonObject consumerConfiguration, Handler<AsyncResult<RedisClient>> resultHandler) { discovery.getRecord(filter, ar -> { if (ar.failed() || ar.result() == null) { resultHandler.handle(Future.failedFuture("No matching record")); } else { resultHandler.handle(Future.succeededFuture( discovery.<RedisClient>getReferenceWithConfiguration(ar.result(), consumerConfiguration).get())); } }); } }