Package org.waveprotocol.box.server.robots

Examples of org.waveprotocol.box.server.robots.OperationResults


    RobotWaveletData wavelet = new RobotWaveletData(waveletData, hashedVersionZero);

    // Perform an operation that will be put into a delta
    wavelet.getOpBasedWavelet(BOB).addParticipant(ALEX);

    OperationResults results = mock(OperationResults.class);
    when(results.getOpenWavelets()).thenReturn(Collections.singletonMap(WAVELET_NAME, wavelet));

    SubmitRequestListener requestListener = mock(SubmitRequestListener.class);
    OperationUtil.submitDeltas(results, waveletProvider, requestListener);

    verify(waveletProvider).submitRequest(
View Full Code Here

TOP

Related Classes of org.waveprotocol.box.server.robots.OperationResults

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.