Package com.goodow.realtime.store.impl

Examples of com.goodow.realtime.store.impl.DocumentSaveStateChangedEventImpl


  }

  @Override
  public void onSaveStateChanged(boolean isSaving, boolean isPending) {
    bus.publishLocal(Constants.Topic.STORE + "/" + id + "/" + EventType.DOCUMENT_SAVE_STATE_CHANGED,
        new DocumentSaveStateChangedEventImpl(bridge.getDocument(),
            Json.createObject().set("isSaving", isSaving).set("isPending", isPending)));
  }
View Full Code Here

TOP

Related Classes of com.goodow.realtime.store.impl.DocumentSaveStateChangedEventImpl

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.