PageRenderTime 27ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/gwtrpccommlayer/src/test/java/com/googlecode/gwtrpccommlayer/client/impl/TestServiceAsync.java

https://code.google.com/p/gwtrpccommlayer/
Java | 18 lines | 9 code | 3 blank | 6 comment | 0 complexity | 09727dfdb912c8bd9a1a73a89e7303b2 MD5 | raw file
  1. package com.googlecode.gwtrpccommlayer.client.impl;
  2. import com.google.gwt.user.client.rpc.AsyncCallback;
  3. import java.util.Set;
  4. /**
  5. * Created by IntelliJ IDEA.
  6. * User: dan
  7. * Date: 11/4/10
  8. * Time: 12:02 AM
  9. */
  10. public interface TestServiceAsync {
  11. public void easy(AsyncCallback<Void> callback);
  12. public void multipleArgs(String test, Integer another,AsyncCallback<Void> callback ) throws Exception;
  13. public void echoSimple(String test, AsyncCallback<String> callback);
  14. public <E> void echoGeneric(Set<E> input, AsyncCallback<Set<E>> callback);
  15. }