greskell-websocket-0.1.2.4: Haskell client for Gremlin Server using WebSocket serializer

MaintainerToshio Ito <debug.ito@gmail.com>
Safe HaskellNone
LanguageHaskell2010

Network.Greskell.WebSocket.Client.Options

Contents

Description

 
Synopsis

Options

data Options Source #

Configuration options to create a client for Gremlin Server.

You can get the default Options by defOptions function, and customize its fields by accessor functions.

accessor functions

connectionSettings :: Options -> Settings GValue Source #

Settings for the underlying Connection. Default: defJSONSettings.

batchSize :: Options -> Maybe Int Source #

"batchSize" field for "eval" operation. Default: Nothing.

language :: Options -> Maybe Text Source #

"language" field for "eval" operation. Default: Nothing.

aliases :: Options -> Maybe (HashMap Text Text) Source #

"aliases" field for "eval" operation. Default: Nothing.

scriptEvaluationTimeout :: Options -> Maybe Int Source #

"scriptEvaluationTimeout" field for "eval" operation. Default: Nothing.

Settings