Packages

Graceful shutdown the application

Current section

Files

Jump to
one_piece_graceful_shutdown lib one_piece graceful_shutdown state.ex
Raw

lib/one_piece/graceful_shutdown/state.ex

defmodule OnePiece.GracefulShutdown.State do
@moduledoc false
defstruct init_stop?: true, shutdown_delay_ms: 10_000, notify_pid: nil
def new(opts) do
Map.merge(%__MODULE__{}, Enum.into(opts, %{}))
end
end