Enum ResponseStatusCode
Represents the various status codes that Gremlin Server returns.
Namespace: Gremlin.Net.Driver.Messages
Assembly: cs.temp.dll.dll
Syntax
public enum ResponseStatusCode
Fields
Name | Description |
---|---|
Authenticate | A challenge from the server for the client to authenticate its request. |
InvalidRequestArguments | The request message was parseable, but the arguments supplied in the message were in conflict or incomplete. Check the message format and retry the request. |
MalformedRequest | The request message was not properly formatted which means it could not be parsed at all or the "op" code was not recognized such that Gremlin Server could properly route it for processing. Check the message format and retry the request. |
NoContent | The server processed the request but there is no result to return (e.g. an Iterator with no elements)
|
PartialContent | The server successfully returned some content, but there is more in the stream to arrive - wait for a SUCCESS to signify the end of the stream. |
ScriptEvaluationError | The script submitted for processing evaluated in the ScriptEngine with errors and could not be processed. Check the script submitted for syntax errors or other problems and then resubmit. |
ServerError | A general server error occurred that prevented the request from being processed. |
ServerSerializationError | The server was not capable of serializing an object that was returned from the script supplied on the request. Either transform the object into something Gremlin Server can process within the script or install mapper serialization classes to Gremlin Server. |
ServerTimeout | The server exceeded one of the timeout settings for the request and could therefore only partially responded or did not respond at all. |
Success | The server successfully processed a request to completion - there are no messages remaining in this stream. |
Unauthorized | The request attempted to access resources that the requesting user did not have access to. |