001 package com.google.gwt.maps.client.services;
002
003 /**
004 *
005 * <br><br>
006 * See <a href="https://developers.google.com/maps/documentation/javascript/reference#DistanceMatrixService">DistanceMatrixService API Doc</a>
007 */
008 public interface DistanceMatrixRequestHandler {
009
010 /**
011 * response from callback for Distance Matrix Request
012 * @param response
013 * @param status
014 */
015 void onCallback(DistanceMatrixResponse response, DistanceMatrixStatus status);
016
017 }