示例#1
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
//ORIGINAL LINE: PageLoader getLoader(org.neo4j.io.pagecache.PagedFile file) throws java.io.IOException
        internal virtual PageLoader GetLoader(PagedFile file)
        {
            if (FileUtils.highIODevice(file.File().toPath(), false))
            {
                return(new ParallelPageLoader(file, _executor, _pageCache));
            }
            return(new SingleCursorPageLoader(file));
        }