Tabnine Logo
WireFormatInfoMarshaller.tightUnmarshalByteSequence
Code IndexAdd Tabnine to your IDE (free)

How to use
tightUnmarshalByteSequence
method
in
org.apache.activemq.openwire.v3.WireFormatInfoMarshaller

Best Java code snippets using org.apache.activemq.openwire.v3.WireFormatInfoMarshaller.tightUnmarshalByteSequence (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 tightUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn, BooleanStream bs) throws IOException {
  super.tightUnmarshal(wireFormat, o, dataIn, bs);
  WireFormatInfo info = (WireFormatInfo)o;
  info.beforeUnmarshall(wireFormat);
  
  info.setMagic(tightUnmarshalConstByteArray(dataIn, bs, 8));
  info.setVersion(dataIn.readInt());
  info.setMarshalledProperties(tightUnmarshalByteSequence(dataIn, bs));
  info.afterUnmarshall(wireFormat);
}
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 tightUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn, BooleanStream bs) throws IOException {
  super.tightUnmarshal(wireFormat, o, dataIn, bs);
  WireFormatInfo info = (WireFormatInfo)o;
  info.beforeUnmarshall(wireFormat);
  
  info.setMagic(tightUnmarshalConstByteArray(dataIn, bs, 8));
  info.setVersion(dataIn.readInt());
  info.setMarshalledProperties(tightUnmarshalByteSequence(dataIn, bs));
  info.afterUnmarshall(wireFormat);
}
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 tightUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn, BooleanStream bs) throws IOException {
  super.tightUnmarshal(wireFormat, o, dataIn, bs);
  WireFormatInfo info = (WireFormatInfo)o;
  info.beforeUnmarshall(wireFormat);
  
  info.setMagic(tightUnmarshalConstByteArray(dataIn, bs, 8));
  info.setVersion(dataIn.readInt());
  info.setMarshalledProperties(tightUnmarshalByteSequence(dataIn, bs));
  info.afterUnmarshall(wireFormat);
}
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 tightUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn, BooleanStream bs) throws IOException {
  super.tightUnmarshal(wireFormat, o, dataIn, bs);
  WireFormatInfo info = (WireFormatInfo)o;
  info.beforeUnmarshall(wireFormat);
  
  info.setMagic(tightUnmarshalConstByteArray(dataIn, bs, 8));
  info.setVersion(dataIn.readInt());
  info.setMarshalledProperties(tightUnmarshalByteSequence(dataIn, bs));
  info.afterUnmarshall(wireFormat);
}
org.apache.activemq.openwire.v3WireFormatInfoMarshallertightUnmarshalByteSequence

Popular methods of WireFormatInfoMarshaller

  • looseMarshalByteSequence
  • looseMarshalConstByteArray
  • looseUnmarshalByteSequence
  • looseUnmarshalConstByteArray
  • tightMarshalByteSequence1
  • tightMarshalByteSequence2
  • tightMarshalConstByteArray1
  • tightMarshalConstByteArray2
  • tightUnmarshalConstByteArray

Popular in Java

  • Start an intent from android
  • getResourceAsStream (ClassLoader)
  • addToBackStack (FragmentTransaction)
  • getSystemService (Context)
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • Top Vim plugins
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