Current section
Files
Jump to
Current section
Files
lib/swarm/tracker/entry.ex
defmodule Swarm.Entry do
@moduledoc false
alias Swarm.IntervalTreeClock, as: ITC
require Record
Record.defrecord :entry,
name: nil,
pid: nil,
ref: nil,
meta: %{},
clock: nil
@type entry :: record(:entry, name: term, pid: pid, ref: reference, meta: nil | map, clock: nil | ITC.t)
end