Tabnine Logo
ProducerIdMarshaller.looseUnmarshalLong
Code IndexAdd Tabnine to your IDE (free)

How to use
looseUnmarshalLong
method
in
org.apache.activemq.openwire.v2.ProducerIdMarshaller

Best Java code snippets using org.apache.activemq.openwire.v2.ProducerIdMarshaller.looseUnmarshalLong (Showing top 4 results out of 315)

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);
  ProducerId info = (ProducerId)o;
  info.setConnectionId(looseUnmarshalString(dataIn));
  info.setValue(looseUnmarshalLong(wireFormat, dataIn));
  info.setSessionId(looseUnmarshalLong(wireFormat, dataIn));
}
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);
  ProducerId info = (ProducerId)o;
  info.setConnectionId(looseUnmarshalString(dataIn));
  info.setValue(looseUnmarshalLong(wireFormat, dataIn));
  info.setSessionId(looseUnmarshalLong(wireFormat, dataIn));
}
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);
  ProducerId info = (ProducerId)o;
  info.setConnectionId(looseUnmarshalString(dataIn));
  info.setValue(looseUnmarshalLong(wireFormat, dataIn));
  info.setSessionId(looseUnmarshalLong(wireFormat, dataIn));
}
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);
  ProducerId info = (ProducerId)o;
  info.setConnectionId(looseUnmarshalString(dataIn));
  info.setValue(looseUnmarshalLong(wireFormat, dataIn));
  info.setSessionId(looseUnmarshalLong(wireFormat, dataIn));
}
org.apache.activemq.openwire.v2ProducerIdMarshallerlooseUnmarshalLong

Popular methods of ProducerIdMarshaller

  • looseMarshalLong
  • looseMarshalString
  • looseUnmarshalString
  • tightMarshalLong1
  • tightMarshalLong2
  • tightMarshalString1
  • tightMarshalString2
  • tightUnmarshalLong
  • tightUnmarshalString

Popular in Java

  • Updating database using SQL prepared statement
  • getExternalFilesDir (Context)
  • requestLocationUpdates (LocationManager)
  • setContentView (Activity)
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • SortedSet (java.util)
    SortedSet is a Set which iterates over its elements in a sorted order. The order is determined eithe
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • JTable (javax.swing)
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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