Name | |
---|---|
String | toString(short serviceLevel) |
Name | |
---|---|
final short | REAL_TIME |
final short | SNAPSHOT |
final short | REPEATING_SNAPSHOT |
final short | CONFLATED |
final short | UNKNOWN |
class com::wombat::mama::MamaServiceLevel;
Service level of a MAMA subscription. Provides an enumeration that represents the service level (a) requested by a subscribing application, or (b) provided by the publisher. In the future, the service level provided to the application might change dynamically, depending upon infrastructure capacity. So, even though the requested service level is “real time”, if service deteriorates for any reason, the subscription may automatically switch to a conflated level (after notifying the application of the switch).
static inline String toString(
short serviceLevel
)
Return a string representation of a MAMA service level.
static final short REAL_TIME = 0;
static final short SNAPSHOT = 1;
static final short REPEATING_SNAPSHOT = 2;
static final short CONFLATED = 5;
static final short UNKNOWN = 99;
Updated on 2023-03-31 at 15:29:43 +0100