Back to project page MassRoute.
The source code is released under:
Copyright (c) 2010 Todd Anderson http://www.custardbelly.com/blog Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (th...
If you think the Android project MassRoute listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.custardbelly.massdot.service; // ww w .ja va2 s. c o m import java.net.URL; import android.os.AsyncTask; import com.custardbelly.massdot.service.responder.IRoutesConfigServiceResponder; import com.custardbelly.massdot.service.responder.IRoutesServiceResponder; import com.custardbelly.massdot.service.responder.IStopPredictionsServiceResponder; public interface IMassRouteService { AsyncTask<URL, Integer, Long> getRoutes( IRoutesServiceResponder responder ); AsyncTask<URL, Integer, Long> getRouteConfig( String tagId, IRoutesConfigServiceResponder responder ); AsyncTask<URL, Integer, Long> getStopPredictions( String routeId, String stopId, IStopPredictionsServiceResponder responder); }