HBASE-19045 Deprecate RegionObserver#postInstantiateDeleteTracker.

This commit is contained in:
anoopsamjohn 2017-10-20 23:57:40 +05:30
parent d798541261
commit 64d164b86d
1 changed files with 4 additions and 1 deletions

View File

@ -1016,11 +1016,14 @@ public interface RegionObserver {
* Called after the ScanQueryMatcher creates ScanDeleteTracker. Implementing
* this hook would help in creating customised DeleteTracker and returning
* the newly created DeleteTracker
*
* <p>
* Warn: This is used by internal coprocessors. Should not be implemented by user coprocessors
* @param ctx the environment provided by the region server
* @param delTracker the deleteTracker that is created by the QueryMatcher
* @return the Delete Tracker
* @deprecated Since 2.0 with out any replacement and will be removed in 3.0
*/
@Deprecated
default DeleteTracker postInstantiateDeleteTracker(
ObserverContext<RegionCoprocessorEnvironment> ctx, DeleteTracker delTracker)
throws IOException {