Toggle navigation
Home
tachyon.worker.block.BlockWorker to tachyon.worker.TachyonWorker
No. of Instances - 4
No. of Commits - 2
No. of Projects - {'alluxio'}
Hierarchy/Composition: Composition
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Cascading Type Change (Similar)
BlockWorker
to
TachyonWorker
BlockWorker
to
TachyonWorker
Rename Method invocation
process
to
start
process
to
start
Add or Remove Method invocation
mFileSystemWorker.start()
to
mWorker.start()
mWorker.process()
to
mWorker.start()
mFileSystemWorker.start()
to
mWorker.start()
mWorker.process()
to
mWorker.start()
Update Anonymous class
{ @Override public void run(){ try { mFileSystemWorker.start(); mWorker.process(); } catch ( Exception e) { throw new RuntimeException(e + " \n Start Worker Error \n" + e.getMessage(),e); } } }
to
{ @Override public void run(){ try { mWorker.start(); } catch ( Exception e) { throw new RuntimeException(e + " \n Start Worker Error \n" + e.getMessage(),e); } } }
{ @Override public void run(){ try { mFileSystemWorker.start(); mWorker.process(); } catch ( Exception e) { throw new RuntimeException(e + " \n Start Worker Error \n" + e.getMessage(),e); } } }
to
{ @Override public void run(){ try { mWorker.start(); } catch ( Exception e) { throw new RuntimeException(e + " \n Start Worker Error \n" + e.getMessage(),e); } } }