]> gerrit.simantics Code Review - simantics/platform.git/blob - common/CommandInvoker.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / common / CommandInvoker.java
1 package org.simantics.db.testing.common;
2
3 public interface CommandInvoker<T> {
4
5         void invoke(CommandSequenceEnvironment environment, T parameter) throws Exception;
6         
7 }