MCPcopy Create free account
hub / github.com/MaterializeInc/materialize / initialization_complete

Method initialization_complete

src/compute-client/src/controller.rs:664–669  ·  view source on GitHub ↗

Mark the end of any initialization commands. The implementor may wait for this method to be called before implementing prior commands, and so it is important for a user to invoke this method as soon as it is comfortable. This method can be invoked immediately, at the potential expense of performance.

(&mut self)

Source from the content-addressed store, hash-verified

662 /// and so it is important for a user to invoke this method as soon as it is comfortable.
663 /// This method can be invoked immediately, at the potential expense of performance.
664 pub fn initialization_complete(&mut self) {
665 self.initialized = true;
666 for instance in self.instances.values_mut() {
667 instance.call(Instance::initialization_complete);
668 }
669 }
670
671 /// Wait until the controller is ready to do some processing.
672 ///

Callers

nothing calls this directly

Calls 2

values_mutMethod · 0.80
callMethod · 0.45

Tested by

no test coverage detected