DynamicEntityQueryResult

The result of a query performed on a DynamicEntityDataSource. A query performed on a DynamicEntityDataSource will return an object of this type. The query result allows you to iterate over the dynamic entities that satisfy the query.

Due to the real-time nature of dynamic entities in the result, individual entities may receive new observations, have existing observations purged, or be entirely purged before the application can use them. Use DynamicEntity.getLatestObservation to verify the current state of an entity before using it.

Since

200.7.0

Functions

Link copied to clipboard
open operator override fun iterator(): Iterator<DynamicEntity>

A dynamic entity iterator that allows you to iterate over the query results.