View Javadoc
1   package io.guixer.tools;
2   
3   import java.io.IOException;
4   
5   public interface Callables {
6   
7   	void call(
8   		String callableName
9   	) throws IOException;
10  
11  	void execute(
12  		GuixerConsumer consumer
13  	) throws IOException;
14  }