package io.trygvis.queue; import java.sql.Connection; import java.sql.SQLException; public interface SqlEffect { A doInConnection(Connection c) throws SQLException; interface Void { void doInConnection(Connection c) throws SQLException; } }