Struct BulkLoadProgress
Snapshot of bulk-session progress passed to ProgressReporter.
public readonly struct BulkLoadProgress
- Inherited Members
Properties
ElapsedMilliseconds
Elapsed milliseconds since the session opened.
public long ElapsedMilliseconds { get; init; }
Property Value
EntitiesDestroyed
Number of entities destroyed so far via Destroy(EntityId).
public long EntitiesDestroyed { get; init; }
Property Value
EntitiesSpawned
Number of entities spawned so far via Spawn<TArch>(params ReadOnlySpan<ComponentValue>).
public long EntitiesSpawned { get; init; }
Property Value
EntitiesUpdated
Number of entities updated so far via Update<T>(EntityId, in T).
public long EntitiesUpdated { get; init; }
Property Value
PagesAllocated
Cumulative number of pages allocated by the bulk session.
public long PagesAllocated { get; init; }