Complete a Multi Instance Activity

I have a multi instance activity that is initialized with a Collection called studentsList.
In order to “Complete” this activity - I successfully call the completeTasks with this list when and the workflow moves forward successfully:
taskService.complete(task.getId(), processVariables);

However, I have one more condition where I would need to move this forward - if the values of studentsList becomes null or empty. Essentially - I need both conditions to move the workflow forward - if the studentsList is full (which as i indicated works fine) OR if its empty. Its the latter Im trying to solve - how can i “instruct” camunda that when both these conditions happen - consider the Multi Instance as Complete and move forward?

@SemperFi1970 you can refer this post for using completionCondition with multi instance activity.

So is it an OR condition?
If I add in a completeCondition - either completeTask or completeCondition can move the workflow forward?