com.jdon.container.finder.ContainerFinder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdonframework Show documentation
Show all versions of jdonframework Show documentation
JdonFramework is a java framework that you can use to build your Domain Driven Design + CQRS + EventSource applications with asynchronous concurrency and higher throughput.
package com.jdon.container.finder;
import com.jdon.container.ContainerWrapper;
import com.jdon.controller.context.AppContextWrapper;
/**
* difference with ContainerCallback:
* ContainerCallback client is in the container.
* this client is outside the container
* @author banq
*
*/
public interface ContainerFinder {
public abstract ContainerWrapper findContainer(AppContextWrapper sc);
}