use of org.graylog2.shared.inputs.PersistedInputs in project graylog2-server by Graylog2.
the class InputLauncher method launchAllPersisted.
public void launchAllPersisted() {
for (MessageInput input : persistedInputs) {
input.initialize();
launch(input);
}
}
Aggregations