Advertisement
Guest User

Untitled

a guest
Mar 19th, 2015
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. public static void enqueueOperation(final VKAbstractOperation operation) {
  2.         mBackgroundExecutor.execute(new Runnable() {
  3.             @Override
  4.             public void run() {
  5.                 operation.start();
  6.             }
  7.         });
  8.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement