Package v7db.files.spi

Examples of v7db.files.spi.GzippedContent


    this(db.getCollection(DEFAULT_CONTENT_COLLECTION_NAME));
  }

  public MongoContentStorage(DBCollection contentCollection) {
    this.contentCollection = contentCollection;
    storageSchemes.put("gz", new GzippedContent());
    storageSchemes.put("cat", new ContentConcatenation());
    storageSchemes.put("zip", new ZipFile.ContentFromZipFile());
  }
View Full Code Here

TOP

Related Classes of v7db.files.spi.GzippedContent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.