All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.jeroenr.bson.reader.BsonIntegerReader.scala Maven / Gradle / Ivy

The newest version!
package com.github.jeroenr.bson.reader

import java.nio.ByteBuffer

import com.github.jeroenr.bson.element.BsonInteger

object BsonIntegerReader extends Reader[BsonInteger] {

  def read(buffer: ByteBuffer): Option[BsonInteger] = {
    val name = readCString(buffer)
    val value = buffer.getInt()
    Some(BsonInteger(name, value))
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy