WiltChangeNotificationEvent class

The change notification event.

The type property of this class determines the validity of the rest of the class data, see individual properties for this mapping. Uers should check the event type property BEFORE accessing any other property.

See each event below for a description of its effect.

Constructors

WiltChangeNotificationEvent.abort(String? _exception)
Abort event
WiltChangeNotificationEvent.couchDbError(String? _couchError, String? _couchReason)
CouchDB error event
WiltChangeNotificationEvent.decodeError(String? _httpResponseText, String? _exception)
Decode error event
WiltChangeNotificationEvent.delete(String? _docId, String? _docRevision, dynamic _sequenceNumber)
Delete event
WiltChangeNotificationEvent.sequence(dynamic _sequenceNumber)
Sequence number event
WiltChangeNotificationEvent.update(String? _docId, String? _docRevision, dynamic _sequenceNumber, [JsonObjectLite? _document])
Update event

Properties

couchError String?
Couch error
no setter
couchReason String?
Couch reason
no setter
docId String?
Document identifier
no setter
docRevision String?
Document revision
no setter
document → JsonObjectLite?
Document object
no setter
exception String?
Exception string
no setter
hashCode int
The hash code for this object.
no setterinherited
httpResponseText String?
HTTP response text
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
sequenceNumber → dynamic
Sequence Number
no setter
type String?
Type
no setter

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

abortt → const String
Abort event
couchdbError → const String
CouchDb error event
decodeErrorr → const String
Decode error event
deletee → const String
Delete event
lastSequence → const String
Last sequence number event
updatee → const String
Update event