Package com.goodow.realtime.store.impl.DocumentBridge

Examples of com.goodow.realtime.store.impl.DocumentBridge.OutputSink


            JsonObject body = message.body();
            CollaborativeOperation op = transformer.createOperation(body);
            bridge.consume(op);
          }
        });
    bridge.setOutputSink(new OutputSink() {
      @Override
      public void close() {
        handlerReg.unregister();
      }
View Full Code Here


    channel = new OperationChannel<CollaborativeOperation>(id, transformer, bus, this);
  }

  public void load(final DocumentBridge bridge, double version) {
    this.bridge = bridge;
    bridge.setOutputSink(new OutputSink() {
      @Override
      public void close() {
        channel.disconnect();
      }
View Full Code Here

TOP

Related Classes of com.goodow.realtime.store.impl.DocumentBridge.OutputSink

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.