HBASE-19045 Deprecate RegionObserver#postInstantiateDeleteTracker.
This commit is contained in:
parent
d798541261
commit
64d164b86d
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue