congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
WireFormatInfoMarshaller.tightUnmarshalByteSequence
Code IndexAdd Tabnine to your IDE (free)

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

Best Java code snippets using org.apache.activemq.openwire.v2.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-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);
}
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);
}
org.apache.activemq.openwire.v2WireFormatInfoMarshallertightUnmarshalByteSequence

Popular methods of WireFormatInfoMarshaller

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

Popular in Java

  • Reading from database using SQL prepared statement
  • getSharedPreferences (Context)
  • findViewById (Activity)
  • notifyDataSetChanged (ArrayAdapter)
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Top 17 Plugins for Android Studio
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