class documentation

class NotificationType(Enum): (source)

View In Hierarchy

NotificationType represents the type of the notification event.

Constant KEY_CREATED A record that didn't exist was created.
Constant KEY_DELETED A record was deleted.
Constant KEY_MODIFIED An existing record was modified.
Constant KEY_RANGE_DELETED A range of keys was deleted.
KEY_CREATED: int = (source)

A record that didn't exist was created.

Value
0
KEY_DELETED: int = (source)

A record was deleted.

Value
2
KEY_MODIFIED: int = (source)

An existing record was modified.

Value
1
KEY_RANGE_DELETED: int = (source)

A range of keys was deleted.

Value
3