SyncConnectionErrorCode enum
Protocol connection errors discovered by the server, and reported to the client
These errors will be reported via the error handlers of the affected sessions.
Constructors
- SyncConnectionErrorCode(int code)
-
const
Values
- connectionClosed → const SyncConnectionErrorCode
-
Connection closed (no error)
SyncConnectionErrorCode(100)
- otherError → const SyncConnectionErrorCode
-
Other connection level error
SyncConnectionErrorCode(101)
- unknownMessage → const SyncConnectionErrorCode
-
Unknown type of input message
SyncConnectionErrorCode(102)
- badSyntax → const SyncConnectionErrorCode
-
Bad syntax in input message head
SyncConnectionErrorCode(103)
- limitsExceeded → const SyncConnectionErrorCode
-
Limits exceeded in input message
SyncConnectionErrorCode(104)
- wrongProtocolVersion → const SyncConnectionErrorCode
-
Wrong protocol version (CLIENT) (obsolete)
SyncConnectionErrorCode(105)
- badSessionIdent → const SyncConnectionErrorCode
-
Bad session identifier in input message
SyncConnectionErrorCode(106)
- reuseOfSessionIdent → const SyncConnectionErrorCode
-
Overlapping reuse of session identifier (BIND)
SyncConnectionErrorCode(107)
- boundInOtherSession → const SyncConnectionErrorCode
-
Client file bound in other session (IDENT)
SyncConnectionErrorCode(108)
- badMessageOrder → const SyncConnectionErrorCode
-
Bad input message order
SyncConnectionErrorCode(109)
- badDecompression → const SyncConnectionErrorCode
-
Error in decompression (UPLOAD)
SyncConnectionErrorCode(110)
- badChangesetHeaderSyntax → const SyncConnectionErrorCode
-
Bad syntax in a changeset header (UPLOAD)
SyncConnectionErrorCode(111)
- badChangesetSize → const SyncConnectionErrorCode
-
Bad size specified in changeset header (UPLOAD)
SyncConnectionErrorCode(112)
- switchToFlxSync → const SyncConnectionErrorCode
-
Connected with wrong wire protocol - should switch to FLX sync
SyncConnectionErrorCode(113)
- switchToPbs → const SyncConnectionErrorCode
-
Connected with wrong wire protocol - should switch to PBS
SyncConnectionErrorCode(114)
- unknown → const SyncConnectionErrorCode
-
Unknown Sync connection error code
SyncConnectionErrorCode(9999)
Properties
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
Static Methods
-
fromInt(
int code) → SyncConnectionErrorCode
Constants
-
values
→ const List<
SyncConnectionErrorCode> -
A constant List of the values in this enum, in order of their declaration.
[connectionClosed, otherError, unknownMessage, badSyntax, limitsExceeded, wrongProtocolVersion, badSessionIdent, reuseOfSessionIdent, boundInOtherSession, badMessageOrder, badDecompression, badChanges…