package edu.pdx.cs410J.phonebillgwt.client; import com.google.gwt.user.client.rpc.AsyncCallback; /** * The client-side interface to the ping service */ public interface PingServiceAsync { /** * Return the current date/time on the server */ void ping(AsyncCallback<PhoneBill> async); }