Package org.goldenorb.types.message

Examples of org.goldenorb.types.message.FloatMessage


      RPCProtocol.class, RPCProtocol.versionID, addr, conf);
  }
 
  @Test
  public void testRPC() {
    FloatMessage fm1 = client.sendAndReceiveMessage(fm0, DESTINATION_VALUE, new FloatWritable(
        MESSAGE_VALUE));
    assertTrue(fm0.get() == client.getMessage().get());
    assertEquals(fm0.getDestinationVertex(), client.getMessage().getDestinationVertex());
    assertEquals(fm1.getDestinationVertex(), DESTINATION_VALUE);
    assertTrue(((FloatWritable) fm1.getMessageValue()).get() == MESSAGE_VALUE);
  }
View Full Code Here

TOP

Related Classes of org.goldenorb.types.message.FloatMessage

Copyright © 2018 www.massapicom. 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.