org.elasticsearch.river.mongodb.Status Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-river-mongodb Show documentation
Show all versions of elasticsearch-river-mongodb Show documentation
MongoDB River for ElasticSearch
The newest version!
package org.elasticsearch.river.mongodb;
public enum Status {
UNKNOWN,
/** River should be started */
START_PENDING,
/** River is actually starting up */
STARTING,
START_FAILED,
RUNNING,
STOPPED,
IMPORT_FAILED,
INITIAL_IMPORT_FAILED,
SCRIPT_IMPORT_FAILED,
RIVER_STALE;
}