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-12-22 21:03:27 +01:00
|
|
|
se.scalablesolutions.akka.Kernel$.MODULE$.startRemoteService();
|
2009-07-06 23:45:15 +02:00
|
|
|
isRunning = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|