All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.continual.services.rcvr.NotifierTopics Maven / Gradle / Ivy

Go to download

The Continual.io event receiver API, which ingests event streams from arbitrary client sources, honors ordering in the event stream via event stream name (aka partition key), and writes to a back-end implementation like Kafka.

There is a newer version: 0.3.23
Show newest version
package io.continual.services.rcvr;

/**
 * Specific topics used throughout this infrastructure.
 */
public enum NotifierTopics
{
	/**
	 * Inbound events from users (the outside world).
	 */
	USER_EVENTS,

	/**
	 * Internally generated model update requests.
	 */
	UPDATE_REQUESTS,
	
	/**
	 * Notifications that an object in the data model has changed.
	 */
	DB_UPDATES,


	CONTEXT_UPDATES,

	ACCOUNT_UPDATES,

	MANAGEMENT_DATA
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy