Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document generated GRPC.Stub function arguments #341

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 39 additions & 19 deletions lib/grpc/stub.ex
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,44 @@ defmodule GRPC.Stub do
then use `recv/1` to receive the reply. And if the reply is streaming, `recv/1`
returns a `Stream`.

You can refer to `call/6` for doc of your RPC functions.
## RPC Functions

RPC functions generated via the GRPC.Service.rpc/3 macro are exposed in `GRPC.Stub`
module exposing that service. The following function types are generated:

### Unary

Unary RPCs are where the client sends a single request, and receives a single response, like a normal
function call. Unary functions take following shape

case Greeter.Stub.say_hello(channel, %Request{}, opts) do
{:ok, %Response{}} ->
# Received a response
{:ok, headers_map} ->
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This isn't correct

# Re
end

See the [Options](#Options) section below for available options



# # The actual function invoked when invoking an RPC function.
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will be removing this, just using as a reference for now

#
# Returns
#
# * Unary calls. `{:ok, reply} | {:ok, headers_map} | {:error, error}`
# * Client streaming. A `GRPC.Client.Stream`
# * Server streaming. `{:ok, Enumerable.t} | {:ok, Enumerable.t, trailers_map} | {:error, error}`
#
# Options
#
# * `:timeout` - request timeout. Default is 10s for unary calls and `:infinity` for
# client or server streaming calls
# * `:deadline` - when the request is timeout, will override timeout
# * `:metadata` - a map, your custom metadata
# * `:return_headers` - default is false. When it's true, a three elem tuple will be returned
# with the last elem being a map of headers `%{headers: headers, trailers: trailers}`(unary) or
# `%{headers: headers}`(server streaming)
"""
alias GRPC.Channel
@insecure_scheme "http"
Expand Down Expand Up @@ -113,7 +150,7 @@ defmodule GRPC.Stub do
iex> GRPC.Stub.connect("localhost:50051", accepted_compressors: [GRPC.Compressor.Gzip])
{:ok, channel}

iex> GRPC.Stub.connect("/paht/to/unix.sock")
iex> GRPC.Stub.connect("/path/to/unix.sock")
{:ok, channel}

## Options
Expand Down Expand Up @@ -219,23 +256,6 @@ defmodule GRPC.Stub do
end

@doc false
# # The actual function invoked when invoking an RPC function.
#
# Returns
#
# * Unary calls. `{:ok, reply} | {:ok, headers_map} | {:error, error}`
# * Client streaming. A `GRPC.Client.Stream`
# * Server streaming. `{:ok, Enumerable.t} | {:ok, Enumerable.t, trailers_map} | {:error, error}`
#
# Options
#
# * `:timeout` - request timeout. Default is 10s for unary calls and `:infinity` for
# client or server streaming calls
# * `:deadline` - when the request is timeout, will override timeout
# * `:metadata` - a map, your custom metadata
# * `:return_headers` - default is false. When it's true, a three elem tuple will be returned
# with the last elem being a map of headers `%{headers: headers, trailers: trailers}`(unary) or
# `%{headers: headers}`(server streaming)
def call(_service_mod, rpc, %{channel: channel} = stream, request, opts) do
{_, {req_mod, req_stream}, {res_mod, response_stream}} = rpc

Expand Down
Loading