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

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

Best Java code snippets using org.apache.activemq.openwire.v2.WireFormatInfoMarshaller.looseUnmarshalByteSequence (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);
  WireFormatInfo info = (WireFormatInfo)o;
  info.beforeUnmarshall(wireFormat);
  
  info.setMagic(looseUnmarshalConstByteArray(dataIn, 8));
  info.setVersion(dataIn.readInt());
  info.setMarshalledProperties(looseUnmarshalByteSequence(dataIn));
  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 looseUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn) throws IOException {
  super.looseUnmarshal(wireFormat, o, dataIn);
  WireFormatInfo info = (WireFormatInfo)o;
  info.beforeUnmarshall(wireFormat);
  
  info.setMagic(looseUnmarshalConstByteArray(dataIn, 8));
  info.setVersion(dataIn.readInt());
  info.setMarshalledProperties(looseUnmarshalByteSequence(dataIn));
  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 looseUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn) throws IOException {
  super.looseUnmarshal(wireFormat, o, dataIn);
  WireFormatInfo info = (WireFormatInfo)o;
  info.beforeUnmarshall(wireFormat);
  
  info.setMagic(looseUnmarshalConstByteArray(dataIn, 8));
  info.setVersion(dataIn.readInt());
  info.setMarshalledProperties(looseUnmarshalByteSequence(dataIn));
  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 looseUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn) throws IOException {
  super.looseUnmarshal(wireFormat, o, dataIn);
  WireFormatInfo info = (WireFormatInfo)o;
  info.beforeUnmarshall(wireFormat);
  
  info.setMagic(looseUnmarshalConstByteArray(dataIn, 8));
  info.setVersion(dataIn.readInt());
  info.setMarshalledProperties(looseUnmarshalByteSequence(dataIn));
  info.afterUnmarshall(wireFormat);
}
org.apache.activemq.openwire.v2WireFormatInfoMarshallerlooseUnmarshalByteSequence

Popular methods of WireFormatInfoMarshaller

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

Popular in Java

  • Updating database using SQL prepared statement
  • getSystemService (Context)
  • requestLocationUpdates (LocationManager)
  • getResourceAsStream (ClassLoader)
  • Menu (java.awt)
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin
  • Sublime Text for Python
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