Package org.seattlegamer.spacegame.core

Examples of org.seattlegamer.spacegame.core.BusImpl.send()


   
    Foo fooOne = new Foo(bus, entityId);
    Foo fooTwo = new Foo(bus, UUID.randomUUID());
   
    bus.register(fooOne, entityId);
    bus.send("blah", entityId);
   
    assertEquals("blah", fooOne.fooValue);
    assertEquals(null, fooTwo.fooValue);

  }
View Full Code Here


    UUID entityId = UUID.randomUUID();
   
    Foo fooOne = new Foo(bus, entityId);
   
    bus.register(fooOne, entityId);
    bus.send("blah", entityId);
   
    assertEquals("blah", fooOne.fooValue);
    fooOne.fooValue = null;

    bus.deregister(fooOne, entityId);
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.