Package org.vosao.entity

Examples of org.vosao.entity.FileChunkEntity


      byte[] content) {
    List<FileChunkEntity> result = new ArrayList<FileChunkEntity>();
    List<byte[]> chunks = ArrayUtil.makeChunks(content, ENTITY_SIZE_LIMIT);
    int i = 0;
    for (byte[] chunk : chunks) {
      result.add(new FileChunkEntity(file.getId(), chunk, i++));
    }
    return result;
  }
View Full Code Here

TOP

Related Classes of org.vosao.entity.FileChunkEntity

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.