Advertisement
Guest User

Untitled

a guest
Apr 21st, 2014
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. @Background
  2. void doGetMoreDishesWishedList() {
  3. Log.d(TAG, "doGetMoreDishesWishedList");
  4. Log.d(TAG, Integer.toString(android.os.Process.myTid()));
  5. if (Looper.myLooper() == Looper.getMainLooper())
  6. Log.d(TAG, "In main loop");
  7. else
  8. Log.d(TAG, "Not In main loop");
  9. }
  10.  
  11. @UiThread
  12. void updateUiGetMoreDishesWishedList(long requestSentTime, ArrayList<UserDishContainer> newList) {
  13. Log.d(TAG, "updateUiGetMoreDishesWishedList");
  14. Log.d(TAG, Integer.toString(android.os.Process.myTid()));
  15. }
  16.  
  17. 04-07 21:11:33.359: D/WishlistFragment(26346): doGetMoreDishesWishedList
  18. 04-07 21:11:33.359: D/WishlistFragment(26346): 26346
  19. 04-07 21:11:33.359: D/WishlistFragment(26346): In main loop
  20. 04-07 21:11:34.372: D/WishlistFragment(26346): updateUiGetMoreDishesWishedList
  21. 04-07 21:11:34.372: D/WishlistFragment(26346): 26346
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement