Toggle navigation
Home
alluxio.thrift.FileInfo to alluxio.thrift.GetStatusTResponse
No. of Instances - 1
No. of Commits - 1
No. of Projects - {'alluxio'}
Hierarchy/Composition: SIBLING
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Update String Literal
"GetStatus: path=%s"
to
"GetStatus: path=%s, options=%s"
Update argument list (Method invocation)
format
to
format
Cascading Type Change (Similar)
FileInfo
to
GetStatusTResponse
Cascading Type Change (Different)
RpcCallable<FileInfo>
to
RpcCallable<GetStatusTResponse>
Add or Remove Method invocation
String.format("GetStatus: path=%s",path)
to
String.format("GetStatus: path=%s, options=%s",path,options)
Update Anonymous class
{ @Override public FileInfo call() throws AlluxioException { return ThriftUtils.toThrift(mFileSystemMaster.getFileInfo(new AlluxioURI(path),new GetStatusOptions(options))); } @Override public String toString(){ return String.format("GetStatus: path=%s",path); } }
to
{ @Override public GetStatusTResponse call() throws AlluxioException { return new GetStatusTResponse(ThriftUtils.toThrift(mFileSystemMaster.getFileInfo(new AlluxioURI(path),new GetStatusOptions(options)))); } @Override public String toString(){ return String.format("GetStatus: path=%s, options=%s",path,options); } }