Package com.subgraph.vega.api.model

Examples of com.subgraph.vega.api.model.WorkspaceResetEvent


        // XXX
      }
      database = openDatabase(databaseFile);
      if(database != null) {
        workspaceStatus = null;
        eventManager.fireEvent(new WorkspaceResetEvent(this));
        backgroundCommitTask = createBackgroundCommitTask(database);
        backgroundCommitTimer.scheduleAtFixedRate(backgroundCommitTask, 0, BACKGROUND_COMMIT_INTERVAL);
      } else {
        eventManager.fireEvent(new WorkspaceCloseEvent(this));
      }
View Full Code Here

TOP

Related Classes of com.subgraph.vega.api.model.WorkspaceResetEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.