private void Setup(ISnesData data)
 {
     Running         = true;
     streamProcessor = new BsnesImportStreamProcessor();
     taskManager     = CreateWorkerTaskManager();
     importer        = CreateTraceLogImporter(data);
 }
    private void Shutdown()
    {
        streamProcessor.Shutdown();

        streamProcessor = null;
        taskManager     = null;
        importer        = null;

        Running = false;
    }