com.netflix.mantis.examples.mantispublishsample.Application Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mantis-examples-mantis-publish-sample Show documentation
Show all versions of mantis-examples-mantis-publish-sample Show documentation
mantis-examples-mantis-publish-sample
/*
* Copyright 2019 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.netflix.mantis.examples.mantispublishsample;
import com.google.inject.Guice;
import com.google.inject.Injector;
import com.netflix.archaius.guice.ArchaiusModule;
import com.netflix.spectator.nflx.SpectatorModule;
import io.mantisrx.publish.api.EventPublisher;
import io.mantisrx.publish.netty.guice.MantisRealtimeEventsPublishModule;
/**
* A simple example that uses Guice to inject the {@link EventPublisher} part of the mantis-publish library
* to send events to Mantis.
*
* The mantis-publish library provides on-demand source side filtering via MQL. When a user publishes
* events via this library the events may not be actually shipped to Mantis. A downstream consumer needs
* to first register a query and the query needs to match events published by the user.
*/
public class Application {
public static void main(String [] args) {
Injector injector = Guice.createInjector(new BasicModule(), new ArchaiusModule(),
new MantisRealtimeEventsPublishModule(), new SpectatorModule());
IDataPublisher publisher = injector.getInstance(IDataPublisher.class);
publisher.generateAndSendEventsToMantis();
}
}