org.jgroups.util.UUID Java Examples
The following examples show how to use
org.jgroups.util.UUID.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: UniTimeClusterDiscovery.java From unitime with Apache License 2.0 | 4 votes |
protected void writeOwnInformation() { PhysicalAddress physical_addr=(PhysicalAddress)down(new Event(Event.GET_PHYSICAL_ADDRESS, local_addr)); update(new PingData(local_addr, is_server, UUID.get(local_addr), physical_addr).coord(is_coord)); }
Example #2
Source File: AmqpSendReceiveTest.java From activemq-artemis with Apache License 2.0 | 4 votes |
@Test(timeout = 60000) public void testMessageWithToFieldSetToRandomAddress() throws Exception { doTestMessageWithToFieldSet(false, UUID.randomUUID().toString()); }