//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
//ORIGINAL LINE: public org.neo4j.io.fs.StoreChannel open(java.io.File fileName, org.neo4j.io.fs.OpenMode openMode) throws java.io.IOException
        public override StoreChannel Open(File fileName, OpenMode openMode)
        {
            return(ChooseFileSystem(fileName).open(fileName, openMode));
        }
Beispiel #2
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
//ORIGINAL LINE: public org.neo4j.io.fs.StoreFileChannel open(java.io.File fileName, org.neo4j.io.fs.OpenMode mode) throws java.io.IOException
            public override StoreFileChannel Open(File fileName, OpenMode mode)
            {
                return(new SingleByteBufferChannel(base.Open(fileName, mode)));
            }
Beispiel #3
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
//ORIGINAL LINE: public org.neo4j.io.fs.StoreChannel open(java.io.File fileName, org.neo4j.io.fs.OpenMode openMode) throws java.io.IOException
        public override StoreChannel Open(File fileName, OpenMode openMode)
        {
            return(Fs.open(fileName, openMode));
        }