Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Java:
- .continueWithTask(
- new Continuation<Void, Task<Void>>() {
- @Override
- public Task<Void> then(Task<Void> task) throws Exception {
- synchronized (Class.this) {
- }
- }
- }
- )
- Kotlin:
- .continueWithTask { task ->
- synchronized (this) {
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment