Package com.kurento.tool.rom.client

Examples of com.kurento.tool.rom.client.RemoteObject


  @Test
  public void testRomClientObjectManager() {

    RomClientObjectManager manager = new RomClientObjectManager(null);
    new RemoteObject("xxx", null, null, manager);

    if (null == manager.getRemoteObject("xxx")) {
      Assert.fail("Reference should NOT be null");
    }
View Full Code Here


  @Test
  public void testRomClientObjectManager2() {

    RomClientObjectManager manager = new RomClientObjectManager(null);
    RemoteObject obj = new RemoteObject("xxx", null, null, manager);

    if (obj != manager.getRemoteObject("xxx")) {
      Assert.fail("Reference should be equals to inserted remote object");
    }
View Full Code Here

    if (remoteObject == null) {

      if (manager instanceof RomClientObjectManager) {

        RomClientObjectManager clientManager = (RomClientObjectManager) manager;
        RemoteObject newRemoteObject = new RemoteObject(value,
            ((Class<?>) type).getSimpleName(),
            clientManager.getClient(), clientManager);
        clientManager.registerObject(value, newRemoteObject);
        return newRemoteObject;
View Full Code Here

TOP

Related Classes of com.kurento.tool.rom.client.RemoteObject

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.