new
Cryptoid (context) > Scheduler

Scheduler

Description of Scheduler


concepts

attrs
@timeout (anything)

Attribute timeout


fields

signatures
⨌ start_link / 1 (anything) Signature inference is ambiguous, choose stricter type

Head of start_link/1

⨌ init / 1 (anything) Signature inference is ambiguous, choose stricter type

Head of init/1

⨌ handle_info / 2 (anything) Signature inference is ambiguous, choose stricter type

Head of handle_info/2


samples

lib/cryptoid/scheduler.ex
defmodule Cryptoid.Scheduler do @moduledoc "Description of Scheduler" @timeout 60000 @doc "Head of handle_info/2" @spec handle_info(atom :: atom, state :: any) :: any def handle_info(atom, state) def handle_info(atom, state) do end @doc "Head of init/1" @spec init(count :: any) :: any def init(count) def init(count) do end @doc "Head of start_link/1" @spec start_link(count :: any) :: any def start_link(count) def start_link(count) do end end

defmodule Cryptoid.Scheduler do
  @moduledoc "Description of Scheduler"
  @timeout 60000
  @doc "Head of handle_info/2"
  @spec handle_info(atom :: atom, state :: any) :: any
  def handle_info(atom, state)

  def handle_info(atom, state) do
  end

  @doc "Head of init/1"
  @spec init(count :: any) :: any
  def init(count)

  def init(count) do
  end

  @doc "Head of start_link/1"
  @spec start_link(count :: any) :: any
  def start_link(count)

  def start_link(count) do
  end
end


test/cryptoid/scheduler_test.exs
defmodule Cryptoid.SchedulerTest do use ExUnit.Case, async: true alias Cryptoid.Scheduler describe("handle_info / 2") do test "fun handle_info" do end end describe("init / 1") do test "fun init" do end end describe("start_link / 1") do test "fun start_link" do end end end

defmodule Cryptoid.SchedulerTest do
  use ExUnit.Case, async: true
  alias Cryptoid.Scheduler

  describe("handle_info / 2") do
    test "fun handle_info" do
    end
  end

  describe("init / 1") do
    test "fun init" do
    end
  end

  describe("start_link / 1") do
    test "fun start_link" do
    end
  end
end