示例#1
0
 internal KeyValueWriter(MetadataCollector metadata, Writer writer)
 {
     this._metadata = metadata;
     this._writer   = writer;
 }
示例#2
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
//ORIGINAL LINE: public static KeyValueWriter create(MetadataCollector metadata, org.neo4j.io.fs.FileSystemAbstraction fs, org.neo4j.io.pagecache.PageCache pages, java.io.File path, int pageSize) throws java.io.IOException
        public static KeyValueWriter Create(MetadataCollector metadata, FileSystemAbstraction fs, PageCache pages, File path, int pageSize)
        {
            return(new KeyValueWriter(metadata, Writer.Create(fs, pages, path, pageSize)));
        }