我有一个检查网络连接然后检查服务器可用性的功能。如果有网络连接,它将接下来检查服务器可用性。不幸的是,检查服务器可用性是通过AsyncTask
。
这就是我想要使用AsyncTask
:
if(NetworkConnectionInfo(context).execute()) {
return true
} else {
return false
}
这是NetworkConnectionInfo
类
class NetworkConnectionInfo : AsyncTask<String, String, Boolean> {
private var context: Context? = null
constructor(context:Context):super(){
this.context = context
}
override fun onPreExecute() {}
override fun doInBackground(vararg p0: String?): Boolean {
try {
val url = URL("http://www.example.com/")
val urlc = url.openConnection() as HttpURLConnection
urlc.setRequestProperty("User-Agent", "test")
urlc.setRequestProperty("Connection", "close")
urlc.setConnectTimeout(1000) // mTimeout is in seconds
urlc.connect()
return urlc.getResponseCode() === 200
} catch (ex:Exception) {
ex.printStackTrace()
}
return false
}
override fun onProgressUpdate(vararg values: String?) {}
override fun onPostExecute(success: Boolean) {
if(!success) {
Toast.makeText(this.context,"Error connecting server. Please try again later.", Toast.LENGTH_LONG).show()
} else {
Toast.makeText(this.context,"Server is available.", Toast.LENGTH_LONG).show()
}
}
}
我想在success
中返回onPostExecute
。我不知道如何处理这个问题。
答案 0 :(得分:1)
AsyncTask
没有返回值,因为它是异步的。
您必须直接在回调函数success
中使用结果(onPostExecute
)。这就是AsyncTask
的设计和使用方式。
override fun onPostExecute(success: Boolean) {
// call further functions depending on "success"
// Note: can access views since it runs on the UI thread
}