package io.trygvis.queue; import java.util.List; public interface TaskEffect { List apply(Task task) throws Exception; }