Package com.sun.messaging.jmq.util.admin

Examples of com.sun.messaging.jmq.util.admin.DestinationInfo


      svcName = cse.getServiceName(),
      clientID = cse.getClientID(),
      durName = cse.getDurableName(),
      bkrName = ba.getKey(),
      title, msg;
  DestinationInfo dstInfo = cse.getDestinationInfo();
  ServiceInfo svcInfo = cse.getServiceInfo();
  Object refreshObj = ba.getAssociatedObj();

  if (type == BrokerCmdStatusEvent.BROKER_BUSY)  {
      int numRetriesAttempted = cse.getNumRetriesAttempted(),
View Full Code Here


    }



    public Long getNumMsgs()  {
  DestinationInfo di = DestinationUtil.getDestinationInfo(d);

  if (di == null)  {
      return (null);
  }
View Full Code Here

  return (new Long(di.nMessages - di.nTxnMessages));
    }

    public Long getNumMsgsRemote()  {
  DestinationInfo di = DestinationUtil.getDestinationInfo(d);

  if (di == null)  {
      return (null);
  }
View Full Code Here

            ba.setAssociatedObj(bDestCObj);

        destName = bDestCObj.getDestinationInfo().name;
        destTypeMask = bDestCObj.getDestinationInfo().type;

        DestinationInfo destInfo = bae.getDestinationInfo();
        destInfo.setName(destName);
        destInfo.setType(destTypeMask);

        try {
            ba.sendUpdateDestinationMessage(destInfo);
            ba.receiveUpdateDestinationReplyMessage();
View Full Code Here

  return (new Long(di.nRemoteMessages));
    }

    public Long getNumMsgsHeldInTransaction()  {
  DestinationInfo di = DestinationUtil.getDestinationInfo(d);

  if (di == null)  {
      return (null);
  }
View Full Code Here

  DestMetricsCounters dmc = d.getMetrics();
  return (new Long(dmc.getMessagesOut()));
    }

    public Long getNumMsgsPendingAcks()  {
  DestinationInfo di = DestinationUtil.getDestinationInfo(d);

  if (di == null)  {
      return (null);
  }
View Full Code Here

    public Boolean getTemporary()  {
  return (isTemporary());
    }

    public Long getTotalMsgBytes()  {
  DestinationInfo di = DestinationUtil.getDestinationInfo(d);

  if (di == null)  {
      return (null);
  }
View Full Code Here

  return (new Long(di.nMessageBytes - di.nTxnMessageBytes));
    }

    public Long getTotalMsgBytesRemote()  {
  DestinationInfo di = DestinationUtil.getDestinationInfo(d);

  if (di == null)  {
      return (null);
  }
View Full Code Here

  return (new Long(di.nRemoteMessageBytes));
    }

    public Long getTotalMsgBytesHeldInTransaction()  {
  DestinationInfo di = DestinationUtil.getDestinationInfo(d);

  if (di == null)  {
      return (null);
  }
View Full Code Here

            BrokerDestCObj bDestCObj;
            int i = 0;

            Enumeration e = dests.elements();
            while (e.hasMoreElements()) {
                DestinationInfo dInfo = (DestinationInfo)e.nextElement();
                if ((!DestType.isTemporary(dInfo.type)) &&
                    (!MessageType.JMQ_ADMIN_DEST.equals(dInfo.name)) &&
                    (!MessageType.JMQ_BRIDGE_ADMIN_DEST.equals(dInfo.name)) &&
                    (!DestType.isInternal(dInfo.fulltype))) {
                    bDestCObj = new BrokerDestCObj(bCObj, dInfo);
View Full Code Here

TOP

Related Classes of com.sun.messaging.jmq.util.admin.DestinationInfo

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.