io.continual.services.rcvr.NotifierTopics Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of continualRcvr Show documentation
Show all versions of continualRcvr Show documentation
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.
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