observeBatch method

void observeBatch(
  1. List<Concept> concepts
)

Observes a batch of concepts (e.g. a full workspace snapshot).

Implementation

void observeBatch(List<Concept> concepts) {
  for (final c in concepts) {
    observe(c);
  }
}