Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IOwnCloudSyncService.aidl « services « owncloudnewsreader « luhmer « de « java « main « src « News-Android-App - github.com/nextcloud/news-android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e1851bacabc531efab2698451e1c28fcc9e1441c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package de.luhmer.owncloudnewsreader.services;

import de.luhmer.owncloudnewsreader.services.IOwnCloudSyncServiceCallback;

// Declare any non-default types here with import statements

/** Example service interface */
interface IOwnCloudSyncService {
    /** Request the process ID of this service, to do evil things with it. */
    
    
    void registerCallback(IOwnCloudSyncServiceCallback callback);
    void unregisterCallback(IOwnCloudSyncServiceCallback callback);
    void startSync();
    boolean isSyncRunning();
}