source: other-projects/FileTransfer-WebSocketPair/testGXTWithGreenstone/src/com/gs3/testGXT/client/services/ProgressBarHandshakeService.java@ 33053

Last change on this file since 33053 was 33053, checked in by ak19, 5 years ago

I still had some stuff of Nathan Kelly's (FileTransfer-WebSocketPair) sitting on my USB. Had already commited the Themes folder at the time, 2 years back. Not sure if he wanted this additional folder commited. But I didn't want to delete it and decided it will be better off on SVN. When we use his project, if we find we didn't need this test folder, we can remove it from svn then.

File size: 417 bytes
Line 
1package com.gs3.testGXT.client.services;
2import java.util.LinkedList;
3
4import com.google.gwt.user.client.rpc.RemoteService;
5import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
6
7@RemoteServiceRelativePath("handshake")
8public interface ProgressBarHandshakeService extends RemoteService {
9 //list is: current progress (float), job/items completed (for refresh purposes)
10 LinkedList<String[]> shakeHands();
11}
Note: See TracBrowser for help on using the repository browser.