Example usage for com.mongodb LazyDBObject LazyDBObject

List of usage examples for com.mongodb LazyDBObject LazyDBObject

Introduction

In this page you can find the example usage for com.mongodb LazyDBObject LazyDBObject.

Prototype

public LazyDBObject(final byte[] bytes, final int offset, final LazyBSONCallback callback) 

Source Link

Document

Construct an instance.

Usage

From source file:org.bson.LazyBSONCallback.java

License:Apache License

public Object createObject(byte[] data, int offset) {
    return new LazyDBObject(data, offset, this);
}