EcsElixirCore.Domain.Model.Features.Sampling.Value.SamplingRule (ecs_elixir_core v1.0.0)

Copy Markdown

Value object representing a single sampling rule (show_count, skip_count, cycle).

Summary

Types

t()

@type t() :: %EcsElixirCore.Domain.Model.Features.Sampling.Value.SamplingRule{
  cycle: pos_integer(),
  show_count: non_neg_integer(),
  skip_count: non_neg_integer()
}

Functions

new(show_count, skip_count)

@spec new(non_neg_integer(), non_neg_integer()) :: t()