protected <C extends CrashConfig> ILogSession createSessionStore(final C config) {
return new LocalLogSession(); // SharedLogSession
}
protected <C extends CrashConfig> Processor createProcessor(final C config) {
final SyncProcessor syncPrc = new SyncProcessor(config);
if (config.isSync())
return syncPrc;
else
return new AsyncProcessor(config, syncPrc);
}