Examples of cosPollControl()


Examples of tcg.plan.cos.ICosPlanServer.cosPollControl()

        thread = instance.mgrRef1_.cosGetActiveCorbaServer(STR_PLAN_SERVER.value);
        planServer = ICosPlanServerHelper.narrow(thread);
        //make sure it is really in control
        if (planServer != null)
        {
          planServer.cosPollControl();
        }
      }
      catch (Exception ex)
      {
        logger_.error("Can not get reference to active plan server in primary Process Manager");
View Full Code Here

Examples of tcg.plan.cos.ICosPlanServer.cosPollControl()

        thread = instance.mgrRef1_.cosGetActiveCorbaServer(STR_PLAN_SERVER.value);
        planServer = ICosPlanServerHelper.narrow(thread);
        //make sure it is really in control
        if (planServer != null)
        {
          planServer.cosPollControl();
        }
      }
      catch (Exception ex)
      {
        logger_.error("Can not get reference to active plan server in secondary Process Manager");
View Full Code Here

Examples of tcg.scada.cos.ICosDataPointServer.cosPollControl()

        thread = instance.mgrRef1_.cosGetActiveCorbaServer(key);
        dpServer = ICosDataPointServerHelper.narrow(thread);
        //make sure it is really in control
        if (dpServer != null)
        {
          dpServer.cosPollControl();
        }
      }
      catch (Exception ex)
      {
        logger_.error("Can not get reference to active dpserver for location " + location
View Full Code Here

Examples of tcg.scada.cos.ICosDataPointServer.cosPollControl()

        thread = instance.mgrRef2_.cosGetActiveCorbaServer(key);
        dpServer = ICosDataPointServerHelper.narrow(thread);
        //make sure it is really in control
        if (dpServer != null)
        {
          dpServer.cosPollControl();
        }
      }
      catch (Exception ex)
      {
        logger_.error("Can not get reference to active dpserver for location " + location
View Full Code Here

Examples of tcg.syscontrol.cos.ICosManagedProcess.cosPollControl()

    {
      processRef = process.reference;
      //validate it
      try
      {
        processRef.cosPollControl();
      }
      catch (Exception ex)
      {
        //ignore. just reset the reference
        logger_.trace("Can not poll control local managed process.");
View Full Code Here

Examples of tcg.syscontrol.cos.ICosManagedProcess.cosPollControl()

        try
        {
          processRef = it.next().reference.cosGetManagedProcess2(process.entity);
          if (processRef != null)
          {
            processRef.cosPollControl();
          }
          it.next().errorCounter = 0;
        }
        catch(CosUnknownProcessException ue)
        {
View Full Code Here

Examples of tcg.syscontrol.cos.ICosMonitoredThread.cosPollControl()

    {
      serverRef = server.reference;
      //validate it
      try
      {
        serverRef.cosPollControl();
      }
      catch (Exception ex)
      {
        //ignore. just reset the reference
        logger_.trace("Can not poll control local corba server.");
View Full Code Here

Examples of tcg.syscontrol.cos.ICosMonitoredThread.cosPollControl()

        try
        {
          serverRef = it.next().reference.cosGetCorbaServer(server.key);
          if (serverRef != null)
          {
            serverRef.cosPollControl();
          }
          it.next().errorCounter = 0;
        }
        catch(CosUnknownProcessException ue)
        {
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.