本文整理汇总了Java中org.jboss.weld.environment.se.events.ContainerInitialized类的典型用法代码示例。如果您正苦于以下问题:Java ContainerInitialized类的具体用法?Java ContainerInitialized怎么用?Java ContainerInitialized使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ContainerInitialized类属于org.jboss.weld.environment.se.events包,在下文中一共展示了ContainerInitialized类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: start
import org.jboss.weld.environment.se.events.ContainerInitialized; //导入依赖的package包/类
void start(@Observes ContainerInitialized ignored) {
Undertow server = Undertow.builder()
.addHttpListener(port, bind)
.setHandler(Handlers.proxyHandler(handler))
.build();
server.start();
}
示例2: run
import org.jboss.weld.environment.se.events.ContainerInitialized; //导入依赖的package包/类
public void run(@Observes ContainerInitialized event) {
System.out.println("Execution is proxy? " + (execution instanceof ProxyObject));
int i = 0;
for (Continuation cc = Continuation.startWith(execution); null != cc; cc = cc.resume(i += 100)) {
System.out.println("SUSPENDED " + cc.value());
}
System.out.println("===");
}
示例3: start
import org.jboss.weld.environment.se.events.ContainerInitialized; //导入依赖的package包/类
public void start(@Observes ContainerInitialized startEvent) {
setUpLookAndFeel();
mainWindow.display();
startEventLoop(new Runnable() {
public void run() {
//mainWindow.show();
}
});
}
示例4: containerInitialized
import org.jboss.weld.environment.se.events.ContainerInitialized; //导入依赖的package包/类
void containerInitialized(@Observes final ContainerInitialized event) {
info("CDI container initialialization completed - notification [{}] received.", event);
info("Attached to service dependency : [{}]", getSessionManager());
info("Attached to service dependency : [{}]", getUserRepository());
info("Attached to service dependency : [{}]", getHazelcastService());
}
示例5: containerInitialized
import org.jboss.weld.environment.se.events.ContainerInitialized; //导入依赖的package包/类
void containerInitialized(@Observes final ContainerInitialized event) {
info("CDI container initialialization completed - notification [{}] received.", event);
process();
scan();
getApplicationContextService().start();
}
示例6: onStartup
import org.jboss.weld.environment.se.events.ContainerInitialized; //导入依赖的package包/类
public void onStartup(@Observes ContainerInitialized event, @Parameters List<String> parameters) {
this.datadirPath = Main.getParameters()[0];
this.datadir = new TFile(datadirPath);
try {
run();
} catch (Exception e) {
e.printStackTrace();
}
}
示例7: initialMe
import org.jboss.weld.environment.se.events.ContainerInitialized; //导入依赖的package包/类
public void initialMe(
@Observes ContainerInitialized event,
@Parameters List<String> parameters) {
System.out.println("Initialization from CDI");
for (int j = 0; j < parameters.size(); ++j) {
final String param = parameters.get(j);
System.out.printf(
" parameters[%d] = %s\n", j, param);
}
System.out.println("Complete.");
}
示例8: startApplication
import org.jboss.weld.environment.se.events.ContainerInitialized; //导入依赖的package包/类
public void startApplication(@Observes ContainerInitialized event) {
for (int i = 0; i < 3; i++) {
serviceLooper.callService();
}
}
示例9: contextoInicializado
import org.jboss.weld.environment.se.events.ContainerInitialized; //导入依赖的package包/类
/**
* Método invocado assim que o contexto CDI é inicializado.
*
* @param event
* o evento
*/
protected void contextoInicializado(@Observes ContainerInitialized event) {
start();
}