Engine
Constructors
Functions
Locks all the Playbacks of a FragmentActivity. The locking Scope is equal to Scope.GROUP. Any call to unlock of smaller Scope (like Scope.MANAGER) will not unlock the Playbacks.
Locks all the Playbacks of a Bucket whose Bucket.root is view. The locking Scope is equal to Scope.BUCKET. Any call to unlock of smaller Scope (like Scope.PLAYBACK) will not unlock the Playbacks.
Locks all the Playbacks of a Manager. The locking Scope is equal to Scope.MANAGER. Any call to unlock of smaller Scope (like Scope.BUCKET) will not unlock the Playbacks.
Locks all the Playbacks of a Playback. The locking Scope is equal to Scope.PLAYBACK.
Unlock all the Playbacks of an FragmentActivity. The effective scope is Scope.GROUP. If it was locked by a call to higher Scope like Scope.GLOBAL, this method does nothing. Once unlocked, it will unlock all locked objects within Scope.GROUP: Playback, Bucket, Manager.
Unlock all the Playbacks of a Bucket whose Bucket.root is view. The effective scope is Scope.BUCKET. If it was locked by a call to higher Scope like Scope.MANAGER, this method does nothing. Once unlocked, it will unlock all locked objects within Scope.BUCKET: Playback.
Unlock all the Playbacks of a Manager. The effective scope is Scope.MANAGER. If it was locked by a call to higher Scope like Scope.GROUP, this method does nothing. Once unlocked, it will unlock all locked objects within Scope.MANAGER: Playback, Bucket.
Unlock all the Playbacks of a Playback. The effective scope is Scope.PLAYBACK. If it was locked by a call to higher Scope like Scope.BUCKET, this method does nothing.