Guest User

Untitled

a guest
Jul 16th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. package com.legalimpurity.asynctaskwrittenfromscratch.MyAsyncTaskCode
  2.  
  3. abstract class MyAsyncTask(){
  4.  
  5. // Functions to be implemented by the user.
  6. abstract fun doInBackground()
  7. abstract fun onPreExecute()
  8. abstract fun onPostExecute()
  9.  
  10. fun execute() {
  11.  
  12. }
  13. }
Add Comment
Please, Sign In to add comment