Toggle navigation
Home
long to alluxio.thrift.LoadMetadataTResponse
No. of Instances - 9
No. of Commits - 1
No. of Projects - {'alluxio'}
Hierarchy/Composition: Composition
Primitive Info: -
NameSpace: Jdk -> Internal
Mapping:
Update String Literal
"LoadMetadata: alluxioPath=%s, recursive=%s"
to
"LoadMetadata: alluxioPath=%s, recursive=%s, options=%s"
Update argument list (Method invocation)
format
to
format
Cascading Type Change (Different)
RpcCallableThrowsIOException<Long>
to
RpcCallableThrowsIOException<LoadMetadataTResponse>
Update Anonymous class
{ @Override public Long call() throws AlluxioException, IOException { return mFileSystemMaster.loadMetadata(new AlluxioURI(alluxioPath),LoadMetadataOptions.defaults().setCreateAncestors(true).setLoadDirectChildren(true)); } @Override public String toString(){ return String.format("LoadMetadata: alluxioPath=%s, recursive=%s",alluxioPath,recursive); } }
to
{ @Override public LoadMetadataTResponse call() throws AlluxioException, IOException { return new LoadMetadataTResponse(mFileSystemMaster.loadMetadata(new AlluxioURI(alluxioPath),LoadMetadataOptions.defaults().setCreateAncestors(true).setLoadDirectChildren(true))); } @Override public String toString(){ return String.format("LoadMetadata: alluxioPath=%s, recursive=%s, options=%s",alluxioPath,recursive,options); } }