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

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

Best Java code snippets using org.apache.activemq.openwire.v3.WireFormatInfoMarshaller.tightUnmarshalConstByteArray (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.v3WireFormatInfoMarshallertightUnmarshalConstByteArray

Popular methods of WireFormatInfoMarshaller

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

Popular in Java

  • Making http requests using okhttp
  • scheduleAtFixedRate (Timer)
  • onRequestPermissionsResult (Fragment)
  • addToBackStack (FragmentTransaction)
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin
  • Top 12 Jupyter Notebook extensions
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