Const // Create a new carb agitator model
const carbAgitator = CarbAgitator
.instance("carb-agitator-1")
.options({ name: "Carb Tank" })
.build();
// Activate carb tank
await carbAgitator.activateCarbTank();
// Check readiness
if (carbAgitator.canProceed) {
console.log("Ready for beverage operations");
}
Registration factory for creating CarbAgitator model instances.
Use this constant to create new carb agitator instances using the fluent factory pattern.