]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.detached/src/main/java/org/argeo/slc/detached/DetachedExecutionServer.java
Ignore log files
[gpl/argeo-slc.git] / runtime / org.argeo.slc.detached / src / main / java / org / argeo / slc / detached / DetachedExecutionServer.java
1 package org.argeo.slc.detached;
2
3 /**
4 * Interface between the detached and the source context via request and
5 * answers.
6 */
7 public interface DetachedExecutionServer {
8 /** Actually executes the request. */
9 public DetachedAnswer executeRequest(DetachedRequest request);
10 }