public boolean awaitUnchecked()

in src/main/java/com/epam/eco/commons/concurrent/ResourceSemaphores.java [120:126]


        public boolean awaitUnchecked() {
            try {
                return await();
            } catch (InterruptedException ie) {
                throw new RuntimeException(ie);
            }
        }