Tabnine Logo
ConsumerIdMarshaller.looseUnmarshalString
Code IndexAdd Tabnine to your IDE (free)

How to use
looseUnmarshalString
method
in
org.apache.activemq.openwire.v3.ConsumerIdMarshaller

Best Java code snippets using org.apache.activemq.openwire.v3.ConsumerIdMarshaller.looseUnmarshalString (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);
  ConsumerId info = (ConsumerId)o;
  info.setConnectionId(looseUnmarshalString(dataIn));
  info.setSessionId(looseUnmarshalLong(wireFormat, dataIn));
  info.setValue(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);
  ConsumerId info = (ConsumerId)o;
  info.setConnectionId(looseUnmarshalString(dataIn));
  info.setSessionId(looseUnmarshalLong(wireFormat, dataIn));
  info.setValue(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);
  ConsumerId info = (ConsumerId)o;
  info.setConnectionId(looseUnmarshalString(dataIn));
  info.setSessionId(looseUnmarshalLong(wireFormat, dataIn));
  info.setValue(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);
  ConsumerId info = (ConsumerId)o;
  info.setConnectionId(looseUnmarshalString(dataIn));
  info.setSessionId(looseUnmarshalLong(wireFormat, dataIn));
  info.setValue(looseUnmarshalLong(wireFormat, dataIn));
}
org.apache.activemq.openwire.v3ConsumerIdMarshallerlooseUnmarshalString

Popular methods of ConsumerIdMarshaller

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

Popular in Java

  • Making http requests using okhttp
  • scheduleAtFixedRate (ScheduledExecutorService)
  • addToBackStack (FragmentTransaction)
  • setContentView (Activity)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • Top plugins for Android Studio
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