Example usage for android.os Looper quitSafely

List of usage examples for android.os Looper quitSafely

Introduction

In this page you can find the example usage for android.os Looper quitSafely.

Prototype

public void quitSafely() 

Source Link

Document

Quits the looper safely.

Usage

From source file:de.stadtrallye.rallyesoft.services.UploadService.java

@TargetApi(18)
private void quitLooperApi18(Looper looper) {
    looper.quitSafely();
}