1 package nl.tudelft.goal.EIS2Java.handlers; 2 3 public interface AsynchronousEntity { 4 5 void acquire() throws InterruptedException; 6 7 void release(); 8 9 }