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-09-04 09:47:32 +02:00
|
|
|
se.scalablesolutions.akka.Kernel.startRemoteService();
|
2009-07-06 23:45:15 +02:00
|
|
|
isRunning = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|