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