Package com.linkedin.databus.client

Examples of com.linkedin.databus.client.DatabusHttpClientImpl.register()


      registerRelay(2, "relay2", new InetSocketAddress("localhost", 7777), "S1,S3", client);
      registerRelay(3, "relay1.1", new InetSocketAddress("localhost", 8887), "S1,S2", client);
      registerRelay(4, "relay3", new InetSocketAddress("localhost", 6666), "S3,S4,S5", client);

      TestConsumer listener1 = new TestConsumer();
      DatabusRegistration reg = client.register(listener1, "S1", "S3");

      assertEquals("Registered State", RegistrationState.REGISTERED,
          reg.getState());

      assertEquals("Component Name" , "Status_TestConsumer_a62d57a7", reg.getStatus().getComponentName());
View Full Code Here


      reg.shutdown();
      assertEquals("Registered State", RegistrationState.SHUTDOWN, reg.getState());
      assertEquals("Component Status", Status.SHUTDOWN, reg.getStatus().getStatus());  
     
      // Duplicate regId
      DatabusRegistration reg2 = client.register(listener1, "S1", "S3");
      boolean isException = false;
      try
      {
        reg2.withRegId(reg.getRegistrationId());
      } catch (DatabusClientException ex) {
View Full Code Here

      registerRelay(2, "relay2", new InetSocketAddress("localhost", 7777), "S1,S3", client);
      registerRelay(3, "relay1.1", new InetSocketAddress("localhost", 8887), "S1,S2", client);
      registerRelay(4, "relay3", new InetSocketAddress("localhost", 6666), "S3,S4,S5", client);

      TestConsumer listener1 = new TestConsumer();
      DatabusRegistration reg = client.register(listener1, "S6", "S2");

      assertEquals("Registered State", RegistrationState.REGISTERED,
          reg.getState());

      assertEquals("Component Name" , "Status_TestConsumer_6fdc9d8d", reg.getStatus().getComponentName());
View Full Code Here

      assertEquals("Component Status", Status.INITIALIZING, reg.getStatus().getStatus());
     
      gotException = false;
      try
      {
        reg = client.register((AbstractDatabusCombinedConsumer)null, "S6", "S2");
      } catch (DatabusClientException ex) {
        gotException = true;
      }
      assertEquals("gotException", true, gotException);
View Full Code Here

      assertEquals("gotException", true, gotException);

      gotException = false;
      try
      {
        reg = client.register(listener1, null);
      } catch (DatabusClientException ex) {
        gotException = true;
      }
      assertEquals("gotException", true, gotException);
     
View Full Code Here

      List<DatabusCombinedConsumer> listeners = new ArrayList<DatabusCombinedConsumer>();
      listeners.add(listener1);
      listeners.add(listener2);

      DatabusRegistration reg = client.register(listeners, "S1", "S2");

      assertEquals("Registered State", RegistrationState.REGISTERED,
          reg.getState());

      assertEquals("Component Name" , "Status_TestConsumer_922c5e28", reg.getStatus().getComponentName());
View Full Code Here

    if (_eventPattern != null)
    {
      consumer.setEventPattern(_eventPattern);
    }
    DatabusRegistration reg = client.register(consumer, sources);

    if (!(reg instanceof DatabusV2RegistrationImpl))
    {
      throw new RuntimeException("Unexpected type for registration Object !!");
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.