Examples of ConnectionValidator


Examples of org.jboss.remoting.ConnectionValidator

      client.addConnectionListener(listener, metadata);
     
      // Test pingPeriod.
      Field field = Client.class.getDeclaredField("connectionValidator");
      field.setAccessible(true);
      ConnectionValidator validator = (ConnectionValidator) field.get(client);
      field = ConnectionValidator.class.getDeclaredField("pingPeriod");
      field.setAccessible(true);
      long pingPeriod = ((Long) field.get(validator)).longValue();
      assertEquals(ConnectionValidator.DEFAULT_PING_PERIOD, pingPeriod);
     
View Full Code Here

Examples of org.jboss.remoting.ConnectionValidator

      client.addConnectionListener(listener, metadata);
     
      // Test pingPeriod.
      Field field = Client.class.getDeclaredField("connectionValidator");
      field.setAccessible(true);
      ConnectionValidator validator = (ConnectionValidator) field.get(client);
      field = ConnectionValidator.class.getDeclaredField("pingPeriod");
      field.setAccessible(true);
      long pingPeriod = ((Long) field.get(validator)).longValue();
      assertEquals(ConnectionValidator.DEFAULT_PING_PERIOD, pingPeriod);
     
View Full Code Here

Examples of org.jboss.remoting.ConnectionValidator

      Integer i = (Integer) client.invoke(new Integer(7));
      assertEquals(8, i.intValue());
      client.addConnectionListener(this);
      Field field = Client.class.getDeclaredField("connectionValidator");
      field.setAccessible(true);
      ConnectionValidator cv = (ConnectionValidator) field.get(client);
      assertNotNull(cv);
      field = ConnectionValidator.class.getDeclaredField("stopped");
      field.setAccessible(true);
      boolean stopped = ((Boolean) field.get(cv)).booleanValue();
      assertFalse(stopped);
View Full Code Here

Examples of org.jboss.remoting.ConnectionValidator

      Integer i = (Integer) client.invoke(new Integer(7));
      assertEquals(8, i.intValue());
      client.addConnectionListener(this);
      Field field = Client.class.getDeclaredField("connectionValidator");
      field.setAccessible(true);
      ConnectionValidator cv = (ConnectionValidator) field.get(client);
      assertNotNull(cv);
      field = ConnectionValidator.class.getDeclaredField("stopped");
      field.setAccessible(true);
      boolean stopped = ((Boolean) field.get(cv)).booleanValue();
      assertFalse(stopped);
     
      cv.stop();
     
      stopped = ((Boolean) field.get(cv)).booleanValue();
      assertTrue(stopped);
      log.info(getName() + " PASSES");
   }
View Full Code Here

Examples of org.jboss.remoting.ConnectionValidator

      Integer i = (Integer) client.invoke(new Integer(7));
      assertEquals(8, i.intValue());
      client.addConnectionListener(this);
      Field field = Client.class.getDeclaredField("connectionValidator");
      field.setAccessible(true);
      ConnectionValidator cv = (ConnectionValidator) field.get(client);
      assertNotNull(cv);
      field = ConnectionValidator.class.getDeclaredField("stopped");
      field.setAccessible(true);
      boolean stopped = ((Boolean) field.get(cv)).booleanValue();
      assertFalse(stopped);
     
      cv.cancel();
     
      stopped = ((Boolean) field.get(cv)).booleanValue();
      assertTrue(stopped);
      log.info(getName() + " PASSES");
   }
View Full Code Here

Examples of org.jboss.remoting.ConnectionValidator

      client.addConnectionListener(listener);
     
      // Test pingPeriod.
      Field field = Client.class.getDeclaredField("connectionValidator");
      field.setAccessible(true);
      ConnectionValidator validator = (ConnectionValidator) field.get(client);
      field = ConnectionValidator.class.getDeclaredField("pingPeriod");
      field.setAccessible(true);
      long pingPeriod = ((Long) field.get(validator)).longValue();
      assertEquals(ConnectionValidator.DEFAULT_PING_PERIOD, pingPeriod);
     
View Full Code Here

Examples of org.jboss.remoting.ConnectionValidator

      client.addConnectionListener(listener, 3456);
     
      // Test pingPeriod.
      Field field = Client.class.getDeclaredField("connectionValidator");
      field.setAccessible(true);
      ConnectionValidator validator = (ConnectionValidator) field.get(client);
      field = ConnectionValidator.class.getDeclaredField("pingPeriod");
      field.setAccessible(true);
      long pingPeriod = ((Long) field.get(validator)).longValue();
      assertEquals(3456, pingPeriod);
     
View Full Code Here

Examples of org.jboss.remoting.ConnectionValidator

      client.addConnectionListener(listener, metadata);
     
      // Test pingPeriod.
      Field field = Client.class.getDeclaredField("connectionValidator");
      field.setAccessible(true);
      ConnectionValidator validator = (ConnectionValidator) field.get(client);
      field = ConnectionValidator.class.getDeclaredField("pingPeriod");
      field.setAccessible(true);
      long pingPeriod = ((Long) field.get(validator)).longValue();
      assertEquals(3468, pingPeriod);
     
View Full Code Here

Examples of org.jboss.remoting.ConnectionValidator

      client.addConnectionListener(listener, metadata);
     
      // Test pingPeriod.
      Field field = Client.class.getDeclaredField("connectionValidator");
      field.setAccessible(true);
      ConnectionValidator validator = (ConnectionValidator) field.get(client);
      field = ConnectionValidator.class.getDeclaredField("pingPeriod");
      field.setAccessible(true);
      long pingPeriod = ((Long) field.get(validator)).longValue();
      assertEquals(3467, pingPeriod);
     
View Full Code Here

Examples of org.jboss.remoting.ConnectionValidator

      client.addConnectionListener(listener, metadata);
     
      // Test pingPeriod.
      Field field = Client.class.getDeclaredField("connectionValidator");
      field.setAccessible(true);
      ConnectionValidator validator = (ConnectionValidator) field.get(client);
      field = ConnectionValidator.class.getDeclaredField("pingPeriod");
      field.setAccessible(true);
      long pingPeriod = ((Long) field.get(validator)).longValue();
      assertEquals(3414, pingPeriod);
     
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.