2009-07-06 23:45:15 +02:00
|
|
|
package se.scalablesolutions.akka.api;
|
|
|
|
|
|
|
|
|
|
public class PersistenceManager {
|
|
|
|
|
private static volatile boolean isRunning = false;
|
|
|
|
|
public static void init() {
|
|
|
|
|
if (!isRunning) {
|
2009-08-19 12:56:33 +02:00
|
|
|
se.scalablesolutions.akka.kernel.Kernel.startRemoteService();
|
2009-07-06 23:45:15 +02:00
|
|
|
isRunning = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|