blob: 9242d0289cfa2ccfa2be6b72ecd0a42d81d68972 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.content;
18
Fred Quintanad9d2f112009-04-23 13:36:27 -070019import android.accounts.Account;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080020import android.os.Bundle;
21import android.content.ISyncContext;
Philip P. Moltmann486b2412018-01-03 11:29:01 -080022import android.content.ISyncAdapterUnsyncableAccountCallback;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023
24/**
25 * Interface used to control the sync activity on a SyncAdapter
26 * @hide
27 */
28oneway interface ISyncAdapter {
29 /**
Philip P. Moltmann486b2412018-01-03 11:29:01 -080030 * Called before {@link #startSync}. This allows the adapter to defer syncs until the
31 * adapter is ready for the account
32 *
33 * @param cb If called back with {@code false} accounts are not synced.
34 */
Andrei Oneaf650e3c2019-02-25 13:15:54 +000035 @UnsupportedAppUsage
Philip P. Moltmann486b2412018-01-03 11:29:01 -080036 void onUnsyncableAccount(ISyncAdapterUnsyncableAccountCallback cb);
37
38 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039 * Initiate a sync for this account. SyncAdapter-specific parameters may
40 * be specified in extras, which is guaranteed to not be null.
41 *
42 * @param syncContext the ISyncContext used to indicate the progress of the sync. When
43 * the sync is finished (successfully or not) ISyncContext.onFinished() must be called.
Fred Quintana21bb0de2009-06-16 10:24:58 -070044 * @param authority the authority that should be synced
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080045 * @param account the account that should be synced
46 * @param extras SyncAdapter-specific parameters
47 */
Andrei Oneaf650e3c2019-02-25 13:15:54 +000048 @UnsupportedAppUsage
Fred Quintana21bb0de2009-06-16 10:24:58 -070049 void startSync(ISyncContext syncContext, String authority,
50 in Account account, in Bundle extras);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080051
52 /**
53 * Cancel the most recently initiated sync. Due to race conditions, this may arrive
54 * after the ISyncContext.onFinished() for that sync was called.
Fred Quintana21bb0de2009-06-16 10:24:58 -070055 * @param syncContext the ISyncContext that was passed to {@link #startSync}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080056 */
Andrei Oneaf650e3c2019-02-25 13:15:54 +000057 @UnsupportedAppUsage
Fred Quintana21bb0de2009-06-16 10:24:58 -070058 void cancelSync(ISyncContext syncContext);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059}