Examples of XBRef


Examples of org.xmlBlaster.util.queue.jdbc.XBRef

      sb.append("/>");
      return sb.toString();
   }

   public XBRef getRef() {
      XBRef ref = super.getRef();
      Map map = new HashMap/*<String, String>*/();
      map.put(XBRef.KEY_OID, keyOid);
      map.put(XBRef.MSG_WRAPPER_ID, "" + msgUnitWrapperUniqueId);
      map.put(XBRef.RECEIVER_STR, receiver.getAbsoluteName());
      map.put(XBRef.SUB_ID, subscriptionId);
      map.put(XBRef.FLAG, flag);
      map.put(XBRef.REDELIVER_COUNTER, "" + redeliverCounter);
      ref.setMetaInfo(StringPairTokenizer.mapToCSV(map));
      ref.setMeatId(msgUnitWrapperUniqueId);
      return ref;
   }
View Full Code Here

Examples of org.xmlBlaster.util.queue.jdbc.XBRef

   /**
    * For the new queues
    */
   public XBRef getRef() {
      XBRef ref = new XBRef();
      ref.setByteSize(getSizeInBytes());
      ref.setDurable(isPersistent());
      // ref.setFlag1();
      ref.setId(getUniqueId());
      ref.setMeatId(getUniqueId());
      ref.setMetaInfo(null);
      ref.setPrio(getPriority());
      return ref;
   }
View Full Code Here

Examples of org.xmlBlaster.util.queue.jdbc.XBRef

   /**
    * For the new queues
    */
   public XBRef getRef() {
      XBRef ref = new XBRef();
      ref.setByteSize(getSizeInBytes());
      ref.setDurable(isPersistent());
      // ref.setFlag1();
      ref.setId(getUniqueId());
      ref.setMeatId(getUniqueId());
      ref.setMetaInfo(null);
      ref.setPrio(getPriority());
      return ref;
   }
View Full Code Here

Examples of org.xmlBlaster.util.queue.jdbc.XBRef

      entry = (MsgQueueHistoryEntry)super.clone();
      return entry;
   }

   public XBRef getRef() {
      XBRef ref = super.getRef();
      Map map = new HashMap/*<String,String>*/();
      map.put(XBRef.KEY_OID, keyOid);
      map.put(XBRef.MSG_WRAPPER_ID, "" + msgUnitWrapperUniqueId);
      ref.setMetaInfo(StringPairTokenizer.mapToCSV(map));
      ref.setMeatId(msgUnitWrapperUniqueId);
      return ref;
   }
View Full Code Here

Examples of org.xmlBlaster.util.queue.jdbc.XBRef

   /**
    * For the new queues
    */
   public XBRef getRef() {
      XBRef ref = new XBRef();
      ref.setByteSize(getSizeInBytes());
      ref.setDurable(isPersistent());
      // ref.setFlag1();
      ref.setId(getUniqueId());
      ref.setMeatId(getUniqueId());
      ref.setMetaInfo(null);
      ref.setPrio(getPriority());
      return ref;
   }
View Full Code Here

Examples of org.xmlBlaster.util.queue.jdbc.XBRef

      store.setFlag1("dummyflag");
      return store;
   }
  
   private XBRef createSimpleRef(long id, long meatId, long storeId, XBMeat meat) {
      XBRef ref = new XBRef();
      ref.setId(id);
      ref.setMeatId(meatId);
      ref.setStoreId(storeId);
      ref.setByteSize(100);
      ref.setFlag1("fu,,y");
      ref.setDurable(false);
      ref.setMetaInfo("simple metainfo data");
      ref.setPrio(6);
      if (meat != null)
         ref.setMeat(meat);
      return ref;
   }
View Full Code Here

Examples of org.xmlBlaster.util.queue.jdbc.XBRef

   /**
    * For the new queues
    */
   public XBRef getRef() {
      XBRef ref = new XBRef();
      ref.setByteSize(getSizeInBytes());
      ref.setDurable(isPersistent());
      ref.setId(getUniqueId());
      ref.setMeatId(getUniqueId());
      ref.setPrio(getPriority());
      ref.setMethodName(entryType);
      return ref;
   }
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.