1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/mobile/android/base/sync/net/SyncStorageRequestDelegate.java Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,38 @@ 1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.7 + 1.8 +package org.mozilla.gecko.sync.net; 1.9 + 1.10 +public interface SyncStorageRequestDelegate { 1.11 + public AuthHeaderProvider getAuthHeaderProvider(); 1.12 + 1.13 + String ifUnmodifiedSince(); 1.14 + 1.15 + // TODO: at this point we can access X-Weave-Timestamp, compare 1.16 + // that to our local timestamp, and compute an estimate of clock 1.17 + // skew. Bug 721887. 1.18 + 1.19 + /** 1.20 + * Override this to handle a successful SyncStorageRequest. 1.21 + * 1.22 + * SyncStorageResourceDelegate implementers <b>must</b> ensure that the HTTP 1.23 + * responses underlying SyncStorageResponses are fully consumed to ensure that 1.24 + * connections are returned to the pool, for example by calling 1.25 + * <code>BaseResource.consumeEntity(response)</code>. 1.26 + */ 1.27 + void handleRequestSuccess(SyncStorageResponse response); 1.28 + 1.29 + /** 1.30 + * Override this to handle a failed SyncStorageRequest. 1.31 + * 1.32 + * 1.33 + * SyncStorageResourceDelegate implementers <b>must</b> ensure that the HTTP 1.34 + * responses underlying SyncStorageResponses are fully consumed to ensure that 1.35 + * connections are returned to the pool, for example by calling 1.36 + * <code>BaseResource.consumeEntity(response)</code>. 1.37 + */ 1.38 + void handleRequestFailure(SyncStorageResponse response); 1.39 + 1.40 + void handleRequestError(Exception ex); 1.41 +}