MeshxRpc.Client.Pool.cast

You're seeing just the function cast, go back to MeshxRpc.Client.Pool module for more information.
Link to this function

cast(pool, request, args, timeout \\ :infinity, retry \\ 5, retry_sleep \\ 100)

View Source

Specs

cast(
  pool :: atom(),
  request :: atom(),
  args :: list(),
  timeout :: timeout(),
  retry :: pos_integer(),
  retry_sleep :: non_neg_integer()
) :: :ok

Sends an asynchronous RPC cast request using workers pool.

Function always immediately returns :ok, even if pool doesn't exist or any other error takes place.

args, timeout, retry and retry_sleep function arguments have the same meaning as in case of call/6.

Example:

iex(1)> MeshxRpc.Client.Pool.cast(NotExisting, :undefined, [])
:ok