X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FTizen.Account.SyncManager%2FTizen.Account.SyncManager%2FSyncClient.cs;h=97c739e37ad698bbb8c2a191ca993f3a3e9facbb;hb=df3ec5b743819de8f4164cf9f72743edd38be800;hp=f86747b4c47961c564696edec14afeb3f1e57b44;hpb=747f521e6e8ff70c9ddd3e7978eabcec2351fdb5;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/Tizen.Account.SyncManager/Tizen.Account.SyncManager/SyncClient.cs b/src/Tizen.Account.SyncManager/Tizen.Account.SyncManager/SyncClient.cs index f86747b..97c739e 100755 --- a/src/Tizen.Account.SyncManager/Tizen.Account.SyncManager/SyncClient.cs +++ b/src/Tizen.Account.SyncManager/Tizen.Account.SyncManager/SyncClient.cs @@ -25,11 +25,13 @@ namespace Tizen.Account.SyncManager /// The SyncClient APIs for managing the sync operations. Applications will call these APIs to schedule their sync operations. /// The sync service maintains sync requests from all the applications and invokes their respective callback methods to perform account synchronization operations. /// + /// 4 public static class SyncClient { /// /// The constructor. /// + /// 4 static SyncClient() { } @@ -37,6 +39,7 @@ namespace Tizen.Account.SyncManager /// /// Requests the sync manager to perform one time sync operation. /// + /// 4 /// The sync job information of the sync job request. /// Sync options determine a way to operate the sync job and can be used as ORing. /// Thrown when any of the arugments are null. @@ -65,6 +68,7 @@ namespace Tizen.Account.SyncManager /// /// Requests the sync manager to perform periodic sync operations. /// + /// 4 /// The sync job information of the sync job request. /// Determines the time interval of the periodic sync. The periodic sync operation can be triggered in that interval, but it does not guarantee the exact time. The minimum value is 30 minutes. /// Sync options determine a way to operate the sync job and can be used as ORing. @@ -96,6 +100,7 @@ namespace Tizen.Account.SyncManager /// /// Requests the sync manager to perform sync operations whenever the corresponding DB is changed. /// + /// 4 /// The sync job information of the sync job request. /// Sync options determine a way to operate the sync job and can be used as ORing. /// http://tizen.org/privilege/calendar.read @@ -127,6 +132,7 @@ namespace Tizen.Account.SyncManager /// /// Gets all the sync jobs registered with the sync manager. /// + /// 4 /// /// Returns the list of SyncJobData corresponding to sync requests. /// @@ -162,6 +168,7 @@ namespace Tizen.Account.SyncManager /// /// Requests the sync manager to remove the corresponding sync job based on the ID. /// + /// 4 /// A unique value of each sync job, it can be used to search a specific sync job and remove it. /// Thrown if the input arugments is invalid. public static void RemoveSyncJob(int id)