Guest User

Untitled

a guest
May 3rd, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. Java:
  2. .continueWithTask(
  3. new Continuation<Void, Task<Void>>() {
  4. @Override
  5. public Task<Void> then(Task<Void> task) throws Exception {
  6. synchronized (Class.this) {
  7.  
  8. }
  9. }
  10. }
  11. )
  12.  
  13. Kotlin:
  14.  
  15. .continueWithTask { task ->
  16. synchronized (this) {
  17.  
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment