congrats Icon
New! Announcing our next generation AI code completions
Read here
Tabnine Logo
JournalTopicAckMarshaller
Code IndexAdd Tabnine to your IDE (free)

How to use
JournalTopicAckMarshaller
in
org.apache.activemq.openwire.v3

Best Java code snippets using org.apache.activemq.openwire.v3.JournalTopicAckMarshaller (Showing top 16 results out of 315)

origin: apache/activemq

  /**
   * Write the booleans that this object uses to a BooleanStream
   */
  public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut) throws IOException {

    JournalTopicAck info = (JournalTopicAck)o;

    super.looseMarshal(wireFormat, o, dataOut);
    looseMarshalNestedObject(wireFormat, (DataStructure)info.getDestination(), dataOut);
    looseMarshalNestedObject(wireFormat, (DataStructure)info.getMessageId(), dataOut);
    looseMarshalLong(wireFormat, info.getMessageSequenceId(), dataOut);
    looseMarshalString(info.getSubscritionName(), dataOut);
    looseMarshalString(info.getClientId(), dataOut);
    looseMarshalNestedObject(wireFormat, (DataStructure)info.getTransactionId(), dataOut);

  }
}
origin: apache/activemq

/**
 * Un-marshal an object instance from the data input stream
 * 
 * @param o the object to un-marshal
 * @param dataIn the data input stream to build the object from
 * @throws IOException
 */
public void looseUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn) throws IOException {
  super.looseUnmarshal(wireFormat, o, dataIn);
  JournalTopicAck info = (JournalTopicAck)o;
  info.setDestination((org.apache.activemq.command.ActiveMQDestination)looseUnmarsalNestedObject(wireFormat, dataIn));
  info.setMessageId((org.apache.activemq.command.MessageId)looseUnmarsalNestedObject(wireFormat, dataIn));
  info.setMessageSequenceId(looseUnmarshalLong(wireFormat, dataIn));
  info.setSubscritionName(looseUnmarshalString(dataIn));
  info.setClientId(looseUnmarshalString(dataIn));
  info.setTransactionId((org.apache.activemq.command.TransactionId)looseUnmarsalNestedObject(wireFormat, dataIn));
}
origin: apache/activemq

/**
 * Write the booleans that this object uses to a BooleanStream
 */
public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
  JournalTopicAck info = (JournalTopicAck)o;
  int rc = super.tightMarshal1(wireFormat, o, bs);
  rc += tightMarshalNestedObject1(wireFormat, (DataStructure)info.getDestination(), bs);
  rc += tightMarshalNestedObject1(wireFormat, (DataStructure)info.getMessageId(), bs);
  rc += tightMarshalLong1(wireFormat, info.getMessageSequenceId(), bs);
  rc += tightMarshalString1(info.getSubscritionName(), bs);
  rc += tightMarshalString1(info.getClientId(), bs);
  rc += tightMarshalNestedObject1(wireFormat, (DataStructure)info.getTransactionId(), bs);
  return rc + 0;
}
origin: apache/activemq

/**
 * Write a object instance to data output stream
 * 
 * @param o the instance to be marshaled
 * @param dataOut the output stream
 * @throws IOException thrown if an error occurs
 */
public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataOutput dataOut, BooleanStream bs) throws IOException {
  super.tightMarshal2(wireFormat, o, dataOut, bs);
  JournalTopicAck info = (JournalTopicAck)o;
  tightMarshalNestedObject2(wireFormat, (DataStructure)info.getDestination(), dataOut, bs);
  tightMarshalNestedObject2(wireFormat, (DataStructure)info.getMessageId(), dataOut, bs);
  tightMarshalLong2(wireFormat, info.getMessageSequenceId(), dataOut, bs);
  tightMarshalString2(info.getSubscritionName(), dataOut, bs);
  tightMarshalString2(info.getClientId(), dataOut, bs);
  tightMarshalNestedObject2(wireFormat, (DataStructure)info.getTransactionId(), dataOut, bs);
}
origin: org.apache.activemq/activemq-all

/**
 * Write a object instance to data output stream
 * 
 * @param o the instance to be marshaled
 * @param dataOut the output stream
 * @throws IOException thrown if an error occurs
 */
public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataOutput dataOut, BooleanStream bs) throws IOException {
  super.tightMarshal2(wireFormat, o, dataOut, bs);
  JournalTopicAck info = (JournalTopicAck)o;
  tightMarshalNestedObject2(wireFormat, (DataStructure)info.getDestination(), dataOut, bs);
  tightMarshalNestedObject2(wireFormat, (DataStructure)info.getMessageId(), dataOut, bs);
  tightMarshalLong2(wireFormat, info.getMessageSequenceId(), dataOut, bs);
  tightMarshalString2(info.getSubscritionName(), dataOut, bs);
  tightMarshalString2(info.getClientId(), dataOut, bs);
  tightMarshalNestedObject2(wireFormat, (DataStructure)info.getTransactionId(), dataOut, bs);
}
origin: pierre/meteo

/**
 * Write the booleans that this object uses to a BooleanStream
 */
public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
  JournalTopicAck info = (JournalTopicAck)o;
  int rc = super.tightMarshal1(wireFormat, o, bs);
  rc += tightMarshalNestedObject1(wireFormat, (DataStructure)info.getDestination(), bs);
  rc += tightMarshalNestedObject1(wireFormat, (DataStructure)info.getMessageId(), bs);
  rc += tightMarshalLong1(wireFormat, info.getMessageSequenceId(), bs);
  rc += tightMarshalString1(info.getSubscritionName(), bs);
  rc += tightMarshalString1(info.getClientId(), bs);
  rc += tightMarshalNestedObject1(wireFormat, (DataStructure)info.getTransactionId(), bs);
  return rc + 0;
}
origin: org.apache.activemq/activemq-all

  /**
   * Write the booleans that this object uses to a BooleanStream
   */
  public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut) throws IOException {

    JournalTopicAck info = (JournalTopicAck)o;

    super.looseMarshal(wireFormat, o, dataOut);
    looseMarshalNestedObject(wireFormat, (DataStructure)info.getDestination(), dataOut);
    looseMarshalNestedObject(wireFormat, (DataStructure)info.getMessageId(), dataOut);
    looseMarshalLong(wireFormat, info.getMessageSequenceId(), dataOut);
    looseMarshalString(info.getSubscritionName(), dataOut);
    looseMarshalString(info.getClientId(), dataOut);
    looseMarshalNestedObject(wireFormat, (DataStructure)info.getTransactionId(), dataOut);

  }
}
origin: org.apache.activemq/activemq-all

/**
 * Un-marshal an object instance from the data input stream
 * 
 * @param o the object to un-marshal
 * @param dataIn the data input stream to build the object from
 * @throws IOException
 */
public void looseUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn) throws IOException {
  super.looseUnmarshal(wireFormat, o, dataIn);
  JournalTopicAck info = (JournalTopicAck)o;
  info.setDestination((org.apache.activemq.command.ActiveMQDestination)looseUnmarsalNestedObject(wireFormat, dataIn));
  info.setMessageId((org.apache.activemq.command.MessageId)looseUnmarsalNestedObject(wireFormat, dataIn));
  info.setMessageSequenceId(looseUnmarshalLong(wireFormat, dataIn));
  info.setSubscritionName(looseUnmarshalString(dataIn));
  info.setClientId(looseUnmarshalString(dataIn));
  info.setTransactionId((org.apache.activemq.command.TransactionId)looseUnmarsalNestedObject(wireFormat, dataIn));
}
origin: pierre/meteo

/**
 * Write a object instance to data output stream
 * 
 * @param o the instance to be marshaled
 * @param dataOut the output stream
 * @throws IOException thrown if an error occurs
 */
public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataOutput dataOut, BooleanStream bs) throws IOException {
  super.tightMarshal2(wireFormat, o, dataOut, bs);
  JournalTopicAck info = (JournalTopicAck)o;
  tightMarshalNestedObject2(wireFormat, (DataStructure)info.getDestination(), dataOut, bs);
  tightMarshalNestedObject2(wireFormat, (DataStructure)info.getMessageId(), dataOut, bs);
  tightMarshalLong2(wireFormat, info.getMessageSequenceId(), dataOut, bs);
  tightMarshalString2(info.getSubscritionName(), dataOut, bs);
  tightMarshalString2(info.getClientId(), dataOut, bs);
  tightMarshalNestedObject2(wireFormat, (DataStructure)info.getTransactionId(), dataOut, bs);
}
origin: org.apache.activemq/activemq-all

/**
 * Write the booleans that this object uses to a BooleanStream
 */
public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
  JournalTopicAck info = (JournalTopicAck)o;
  int rc = super.tightMarshal1(wireFormat, o, bs);
  rc += tightMarshalNestedObject1(wireFormat, (DataStructure)info.getDestination(), bs);
  rc += tightMarshalNestedObject1(wireFormat, (DataStructure)info.getMessageId(), bs);
  rc += tightMarshalLong1(wireFormat, info.getMessageSequenceId(), bs);
  rc += tightMarshalString1(info.getSubscritionName(), bs);
  rc += tightMarshalString1(info.getClientId(), bs);
  rc += tightMarshalNestedObject1(wireFormat, (DataStructure)info.getTransactionId(), bs);
  return rc + 0;
}
origin: org.apache.activemq/activemq-osgi

  /**
   * Write the booleans that this object uses to a BooleanStream
   */
  public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut) throws IOException {

    JournalTopicAck info = (JournalTopicAck)o;

    super.looseMarshal(wireFormat, o, dataOut);
    looseMarshalNestedObject(wireFormat, (DataStructure)info.getDestination(), dataOut);
    looseMarshalNestedObject(wireFormat, (DataStructure)info.getMessageId(), dataOut);
    looseMarshalLong(wireFormat, info.getMessageSequenceId(), dataOut);
    looseMarshalString(info.getSubscritionName(), dataOut);
    looseMarshalString(info.getClientId(), dataOut);
    looseMarshalNestedObject(wireFormat, (DataStructure)info.getTransactionId(), dataOut);

  }
}
origin: org.apache.activemq/activemq-osgi

/**
 * Un-marshal an object instance from the data input stream
 * 
 * @param o the object to un-marshal
 * @param dataIn the data input stream to build the object from
 * @throws IOException
 */
public void looseUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn) throws IOException {
  super.looseUnmarshal(wireFormat, o, dataIn);
  JournalTopicAck info = (JournalTopicAck)o;
  info.setDestination((org.apache.activemq.command.ActiveMQDestination)looseUnmarsalNestedObject(wireFormat, dataIn));
  info.setMessageId((org.apache.activemq.command.MessageId)looseUnmarsalNestedObject(wireFormat, dataIn));
  info.setMessageSequenceId(looseUnmarshalLong(wireFormat, dataIn));
  info.setSubscritionName(looseUnmarshalString(dataIn));
  info.setClientId(looseUnmarshalString(dataIn));
  info.setTransactionId((org.apache.activemq.command.TransactionId)looseUnmarsalNestedObject(wireFormat, dataIn));
}
origin: org.apache.activemq/activemq-osgi

/**
 * Write a object instance to data output stream
 * 
 * @param o the instance to be marshaled
 * @param dataOut the output stream
 * @throws IOException thrown if an error occurs
 */
public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataOutput dataOut, BooleanStream bs) throws IOException {
  super.tightMarshal2(wireFormat, o, dataOut, bs);
  JournalTopicAck info = (JournalTopicAck)o;
  tightMarshalNestedObject2(wireFormat, (DataStructure)info.getDestination(), dataOut, bs);
  tightMarshalNestedObject2(wireFormat, (DataStructure)info.getMessageId(), dataOut, bs);
  tightMarshalLong2(wireFormat, info.getMessageSequenceId(), dataOut, bs);
  tightMarshalString2(info.getSubscritionName(), dataOut, bs);
  tightMarshalString2(info.getClientId(), dataOut, bs);
  tightMarshalNestedObject2(wireFormat, (DataStructure)info.getTransactionId(), dataOut, bs);
}
origin: org.apache.activemq/activemq-osgi

/**
 * Write the booleans that this object uses to a BooleanStream
 */
public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
  JournalTopicAck info = (JournalTopicAck)o;
  int rc = super.tightMarshal1(wireFormat, o, bs);
  rc += tightMarshalNestedObject1(wireFormat, (DataStructure)info.getDestination(), bs);
  rc += tightMarshalNestedObject1(wireFormat, (DataStructure)info.getMessageId(), bs);
  rc += tightMarshalLong1(wireFormat, info.getMessageSequenceId(), bs);
  rc += tightMarshalString1(info.getSubscritionName(), bs);
  rc += tightMarshalString1(info.getClientId(), bs);
  rc += tightMarshalNestedObject1(wireFormat, (DataStructure)info.getTransactionId(), bs);
  return rc + 0;
}
origin: pierre/meteo

  /**
   * Write the booleans that this object uses to a BooleanStream
   */
  public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut) throws IOException {

    JournalTopicAck info = (JournalTopicAck)o;

    super.looseMarshal(wireFormat, o, dataOut);
    looseMarshalNestedObject(wireFormat, (DataStructure)info.getDestination(), dataOut);
    looseMarshalNestedObject(wireFormat, (DataStructure)info.getMessageId(), dataOut);
    looseMarshalLong(wireFormat, info.getMessageSequenceId(), dataOut);
    looseMarshalString(info.getSubscritionName(), dataOut);
    looseMarshalString(info.getClientId(), dataOut);
    looseMarshalNestedObject(wireFormat, (DataStructure)info.getTransactionId(), dataOut);

  }
}
origin: pierre/meteo

/**
 * Un-marshal an object instance from the data input stream
 * 
 * @param o the object to un-marshal
 * @param dataIn the data input stream to build the object from
 * @throws IOException
 */
public void looseUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn) throws IOException {
  super.looseUnmarshal(wireFormat, o, dataIn);
  JournalTopicAck info = (JournalTopicAck)o;
  info.setDestination((org.apache.activemq.command.ActiveMQDestination)looseUnmarsalNestedObject(wireFormat, dataIn));
  info.setMessageId((org.apache.activemq.command.MessageId)looseUnmarsalNestedObject(wireFormat, dataIn));
  info.setMessageSequenceId(looseUnmarshalLong(wireFormat, dataIn));
  info.setSubscritionName(looseUnmarshalString(dataIn));
  info.setClientId(looseUnmarshalString(dataIn));
  info.setTransactionId((org.apache.activemq.command.TransactionId)looseUnmarsalNestedObject(wireFormat, dataIn));
}
org.apache.activemq.openwire.v3JournalTopicAckMarshaller

Javadoc

Marshalling code for Open Wire Format for JournalTopicAckMarshaller NOTE!: This file is auto generated - do not modify! if you need to make a change, please see the modify the groovy scripts in the under src/gram/script and then use maven openwire:generate to regenerate this file.

Most used methods

  • looseMarshalLong
  • looseMarshalNestedObject
  • looseMarshalString
  • looseUnmarsalNestedObject
  • looseUnmarshalLong
  • looseUnmarshalString
  • tightMarshalLong1
  • tightMarshalLong2
  • tightMarshalNestedObject1
  • tightMarshalNestedObject2
  • tightMarshalString1
  • tightMarshalString2
  • tightMarshalString1,
  • tightMarshalString2,
  • tightUnmarsalNestedObject,
  • tightUnmarshalLong,
  • tightUnmarshalString

Popular in Java

  • Making http requests using okhttp
  • notifyDataSetChanged (ArrayAdapter)
  • getSharedPreferences (Context)
  • getResourceAsStream (ClassLoader)
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • JTable (javax.swing)
  • PhpStorm for WordPress
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now