Version: latestCreate non-blocking workflow instancesPrerequisites#Running Zeebe broker with endpoint localhost:26500 (default)Run the deploy a workflow exampleNonBlockingWorkflowInstanceCreator.java#Source on githublong instancesCreating = 0; while (instancesCreating < numberOfInstances) { // this is non-blocking/async => returns a future final ZeebeFuture<WorkflowInstanceEvent> future = client.newCreateInstanceCommand().bpmnProcessId(bpmnProcessId).latestVersion().send(); // could put the future somewhere and eventually wait for its completion instancesCreating++;}Copy