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

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

Best Java code snippets using org.apache.activemq.openwire.v3.ConsumerIdMarshaller.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);
  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.v3ConsumerIdMarshallerlooseUnmarshalLong

Popular methods of ConsumerIdMarshaller

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

Popular in Java

  • Running tasks concurrently on multiple threads
  • getSystemService (Context)
  • getSupportFragmentManager (FragmentActivity)
  • onRequestPermissionsResult (Fragment)
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • Permission (java.security)
    Legacy security code; do not use.
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • From CI to AI: The AI layer in your organization
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