Module Values.LiveSimulationStateSource

A collection of additional state information, such as domain and clock configuration.

Sourcetype nonrec t = {
  1. clocks : SimulationClockList.t option;
    (*

    A list of simulation clocks. At this time, a simulation has only one clock.

    *)
  2. domains : DomainList.t option;
    (*

    A list of domains for the simulation. For more information about domains, see Key concepts: Domains in the SimSpace Weaver User Guide.

    *)
}
Sourceval make : ?clocks:??? -> ?domains:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of SimSpaceWeaverResourceName.t ]) list ] list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t