34353637383940
class KFSImpl implements IFSImpl { private KfsAccess kfsAccess = null; public KFSImpl(String metaServerHost, int metaServerPort) throws IOException { kfsAccess = new KfsAccess(metaServerHost, metaServerPort); }
4445464748495051
this(metaServerHost, metaServerPort, null); } public KFSImpl(String metaServerHost, int metaServerPort, FileSystem.Statistics stats) throws IOException { kfsAccess = new KfsAccess(metaServerHost, metaServerPort); statistics = stats; }
3738394041424344
4041424344454647