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

How to use
readLongData
method
in
org.granite.messaging.amf.io.AMF3Deserializer

Best Java code snippets using org.granite.messaging.amf.io.AMF3Deserializer.readLongData (Showing top 6 results out of 315)

origin: org.graniteds/granite-client-java

protected Double readAMF3Double() throws IOException {
  ensureAvailable(8);
  
  double d = Double.longBitsToDouble(readLongData(buffer, position));
  position += 8;
  return Double.isNaN(d) ? null : d;
}
origin: org.graniteds/granite-server

protected Double readAMF3Double() throws IOException {
  ensureAvailable(8);
  
  double d = Double.longBitsToDouble(readLongData(buffer, position));
  position += 8;
  return Double.isNaN(d) ? null : d;
}
origin: org.graniteds/granite-client-javafx

protected Double readAMF3Double() throws IOException {
  ensureAvailable(8);
  
  double d = Double.longBitsToDouble(readLongData(buffer, position));
  position += 8;
  return Double.isNaN(d) ? null : d;
}
origin: org.graniteds/granite-server

protected Date readAMF3Date() throws IOException {
  final int type = readAMF3UnsignedInteger();
  if ((type & 0x01) == 0) // stored Date
    return (Date)storedObjects.get(type >>> 1);
  ensureAvailable(8);
  Date result = new Date((long)Double.longBitsToDouble(readLongData(buffer, position)));
  position += 8;
  storedObjects.add(result);
  return result;
}
origin: org.graniteds/granite-client-java

protected Date readAMF3Date() throws IOException {
  final int type = readAMF3UnsignedInteger();
  if ((type & 0x01) == 0) // stored Date
    return (Date)storedObjects.get(type >>> 1);
  ensureAvailable(8);
  Date result = new Date((long)Double.longBitsToDouble(readLongData(buffer, position)));
  position += 8;
  storedObjects.add(result);
  return result;
}
origin: org.graniteds/granite-client-javafx

protected Date readAMF3Date() throws IOException {
  final int type = readAMF3UnsignedInteger();
  if ((type & 0x01) == 0) // stored Date
    return (Date)storedObjects.get(type >>> 1);
  ensureAvailable(8);
  Date result = new Date((long)Double.longBitsToDouble(readLongData(buffer, position)));
  position += 8;
  storedObjects.add(result);
  return result;
}
org.granite.messaging.amf.ioAMF3DeserializerreadLongData

Popular methods of AMF3Deserializer

  • <init>
  • readObject
  • close
  • readAMF3Array
  • readAMF3ByteArray
  • readAMF3Date
  • readAMF3Double
  • readAMF3Integer
  • readAMF3Object
  • readAMF3String
  • readAMF3VectorInt
  • readAMF3VectorNumber
  • readAMF3VectorInt,
  • readAMF3VectorNumber,
  • readAMF3VectorObject,
  • readAMF3Xml,
  • readAMF3XmlString,
  • readByte,
  • readDouble,
  • readFully,
  • readInt,
  • readUnsignedByte

Popular in Java

  • Parsing JSON documents to java classes using gson
  • scheduleAtFixedRate (ScheduledExecutorService)
  • requestLocationUpdates (LocationManager)
  • getSystemService (Context)
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • String (java.lang)
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • JTable (javax.swing)
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • Join (org.hibernate.mapping)
  • 21 Best IntelliJ Plugins
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