本文整理汇总了Java中com.subgraph.orchid.Document类的典型用法代码示例。如果您正苦于以下问题:Java Document类的具体用法?Java Document怎么用?Java Document使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Document类属于com.subgraph.orchid包,在下文中一共展示了Document类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: writeDocuments
import com.subgraph.orchid.Document; //导入依赖的package包/类
public void writeDocuments(List<? extends Document> documents) {
final File tempFile = createTempFile();
final FileOutputStream fos = openFileOutputStream(tempFile);
if(fos == null) {
return;
}
try {
writeDocumentsToChannel(fos.getChannel(), documents);
quietClose(fos);
installTempFile(tempFile);
} catch (IOException e) {
logger.warning("I/O error writing to temporary cache file "+ tempFile + " : "+ e);
return;
} finally {
quietClose(fos);
tempFile.delete();
}
}
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:19,代码来源:DirectoryStoreFile.java
示例2: appendDocuments
import com.subgraph.orchid.Document; //导入依赖的package包/类
public void appendDocuments(List<? extends Document> documents) {
if(!ensureOpened()) {
return;
}
try {
final FileChannel channel = openFile.getChannel();
channel.position(channel.size());
writeDocumentsToChannel(channel, documents);
channel.force(true);
} catch (IOException e) {
logger.warning("I/O error writing to cache file "+ cacheFilename);
return;
}
}
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:15,代码来源:DirectoryStoreFile.java
示例3: writeDocument
import com.subgraph.orchid.Document; //导入依赖的package包/类
public synchronized void writeDocument(CacheFile cacheFile, Document document) {
writeDocumentList(cacheFile, Arrays.asList(document));
}
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:4,代码来源:DirectoryStoreImpl.java
示例4: writeDocumentList
import com.subgraph.orchid.Document; //导入依赖的package包/类
public synchronized void writeDocumentList(CacheFile cacheFile, List<? extends Document> documents) {
getStoreFile(cacheFile).writeDocuments(documents);
}
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:4,代码来源:DirectoryStoreImpl.java
示例5: appendDocumentList
import com.subgraph.orchid.Document; //导入依赖的package包/类
public synchronized void appendDocumentList(CacheFile cacheFile, List<? extends Document> documents) {
getStoreFile(cacheFile).appendDocuments(documents);
}
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:4,代码来源:DirectoryStoreImpl.java
示例6: writeDocumentsToChannel
import com.subgraph.orchid.Document; //导入依赖的package包/类
private void writeDocumentsToChannel(FileChannel channel, List<? extends Document> documents) throws IOException {
for(Document d: documents) {
writeAllToChannel(channel, d.getRawDocumentBytes());
}
}
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:6,代码来源:DirectoryStoreFile.java
注:本文中的com.subgraph.orchid.Document类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论