antikythera v0.4.0 Antikythera.Time View Source
Data structure to represent date and time in milli-seconds resolution.
Note that all values of Antikythera.Time.t
are in UTC.
Poison.Encoder
protocol is implemented for Antikythera.Time.t
,
so that values of this type can be directly converted to Antikythera.IsoTimestamp.t
on Poison.encode/1
.
iex> Poison.encode(%{time: {Antikythera.Time, {2017, 1, 1}, {0, 0, 0}, 0}})
{:ok, "{"time":"2017-01-01T00:00:00.000+00:00"}"}
See also new/1
.
Link to this section Summary
Functions
Parses HTTP-date formats into Antikythera.Time.t.
Convert timestamps into Antikythera.Time.t
, leveraging recursive_new?
option of Croma.Struct
.
Returns date/time in IMF-fixdate format.
Link to this section Types
Specs
t() :: {Antikythera.Time, :calendar.date(), :calendar.time(), milliseconds()}
Link to this section Functions
Specs
Specs
from_epoch_milliseconds(Antikythera.MilliSecondsInGregorian.t()) :: t()
Specs
Specs
from_http_date(String.t()) :: Croma.Result.t(t())
Parses HTTP-date formats into Antikythera.Time.t.
Supports IMF-fixdate format, RFC 850 format and ANSI C's asctime()
format for compatibility.
Note: An HTTP-date value must represents time in UTC(GMT). Thus timezone string in the end must always be 'GMT'. Any other timezone string (such as 'JST') will actually be ignored and parsed as GMT.
Specs
Specs
from_iso_basic(String.t()) :: Croma.Result.t(t())
Specs
Specs
from_iso_timestamp(String.t()) :: Croma.Result.t(t())
Specs
Specs
new(Antikythera.IsoTimestamp.t()) :: Croma.Result.t(t())
Convert timestamps into Antikythera.Time.t
, leveraging recursive_new?
option of Croma.Struct
.
Only Antikythera.IsoTimestamp.t
can be converted.
Specs
now() :: t()
Specs
Specs
Specs
Specs
Specs
Specs
Specs
Specs
to_http_date(t()) :: Antikythera.ImfFixdate.t()
Returns date/time in IMF-fixdate format.
The format is subset of Internet Message Format (RFC5322, formarly RFC822, RFC1123). Defined as 'preferred' format in RFC7231 and modern web servers or clients should send in this format.
Specs
to_iso_basic(t()) :: Antikythera.IsoTimestamp.Basic.t()
Specs
to_iso_timestamp(t()) :: Antikythera.IsoTimestamp.t()