Remove dead code / unused class

This commit is contained in:
Simon Willnauer 2015-05-18 14:32:36 +02:00
parent 61a31dd57f
commit 98640310c2
1 changed files with 1 additions and 22 deletions

View File

@ -534,31 +534,10 @@ public abstract class Engine implements Closeable {
return t;
}
public static interface FailedEngineListener {
public interface FailedEngineListener {
void onFailedEngine(ShardId shardId, String reason, @Nullable Throwable t);
}
/**
* Recovery allow to start the recovery process. It is built of three phases.
* <p/>
* <p>The first phase allows to take a snapshot of the master index. Once this
* is taken, no commit operations are effectively allowed on the index until the recovery
* phases are through.
* <p/>
* <p>The seconds phase takes a snapshot of the current transaction log.
* <p/>
* <p>The last phase returns the remaining transaction log. During this phase, no dirty
* operations are allowed on the index.
*/
public static interface RecoveryHandler {
void phase1(SnapshotIndexCommit snapshot);
void phase2(Translog.Snapshot snapshot);
void phase3(Translog.Snapshot snapshot);
}
public static class Searcher implements Releasable {
private final String source;