SyncCallback.aidl (484B) - raw


      1 package me.rhunk.snapenhance.bridge;
      2 
      3 interface SyncCallback {
      4     /**
      5     * Called when the friend data has been synced
      6     * @param uuid The uuid of the friend to sync
      7     * @return The serialized friend data
      8     */
      9     @nullable String syncFriend(String uuid);
     10 
     11     /**
     12     * Called when the conversation data has been synced
     13     * @param uuid The uuid of the conversation to sync
     14     * @return The serialized conversation data
     15     */
     16     @nullable String syncGroup(String uuid);
     17 }