Packages

An OrientDB network binary protocol driver for Elixir 1.3+ using DBConnection.

Current section

Files

Jump to
orientex lib orientex response.ex
Raw

lib/orientex/response.ex

defmodule Orientex.Response do
@moduledoc false
alias Orientex.Types.Record
defstruct [content: nil ,success: nil, session_id: nil, token: nil]
# todo - docs, specs, test
def decode(:request_command, result) do
__MODULE__.Command.parse(result)
end
end