Package tcg.scada.cos

Examples of tcg.scada.cos.CosDpServerException


  public int cosSubscribeAll(int subGroupKeyId) throws CosDpServerException
  {
    SubscriptionGroup subgrp = subscriptions_.get(subGroupKeyId);
    if (subgrp == null)
    {
      throw new CosDpServerException(
          CosDpServerExceptionCodeEnum.ExceptionDpServerGeneric,
          "cosSubscribeAll: invalid subscription group id");
    }
    // pass it to the subscription grou
    return subgrp.subscribeAll();
View Full Code Here


      throws CosDpServerException
  {
    SubscriptionGroup subgrp = subscriptions_.get(subGroupKeyId);
    if (subgrp == null)
    {
      throw new CosDpServerException(
          CosDpServerExceptionCodeEnum.ExceptionDpServerGeneric,
          "cosSubscribeAll: invalid subscription group id");
    }
    // pass it to the subscription grou
    return subgrp.subscribeAllReal();
View Full Code Here

TOP

Related Classes of tcg.scada.cos.CosDpServerException

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.