com.tteky.xenonext.fsm.FSMServices Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xenon-fsm Show documentation
Show all versions of xenon-fsm Show documentation
State machine using Xenon Stateful service
The newest version!
package com.tteky.xenonext.fsm;
import com.tteky.xenonext.fsm.stats.FSMStatsServiceImpl;
import com.tteky.xenonext.fsm.stats.FSMUIService;
import com.vmware.xenon.common.ServiceHost;
/**
* Utilities related to FSM service
*/
public class FSMServices {
public static FSMStatsServiceImpl startUtilityService(ServiceHost host){
FSMStatsServiceImpl service = new FSMStatsServiceImpl();
host.startService(service);
host.startService(new FSMUIService());
return service;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy