OSDN Git Service

Add new StrictMode thread policy - DETECT_UNBUFFERED_IO
authorShubham Ajmera <shubhamajmera@google.com>
Tue, 28 Jun 2016 15:32:02 +0000 (16:32 +0100)
committerShubham Ajmera <shubhamajmera@google.com>
Wed, 29 Jun 2016 09:59:35 +0000 (10:59 +0100)
commit9b7184a8fd6c940872f1526667dd7933db4bdd5f
tree58b3ed4b6ae4c2c5dd346550bb5bd21f43f237db
parentcee6570086985bf1488d24e8feeddb2947abee13
Add new StrictMode thread policy - DETECT_UNBUFFERED_IO

This will enable the developers to check if they could replace an unbuffered
I/O operation with a corresponding buffered I/O operation.

The policy can be set as follow:
     StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
        .detectUnbufferedIO().build());

Bug: 3018772
Change-Id: Ib804a8e9980ae40abfd216f8b87c250fd413bd5c
api/current.txt
api/system-current.txt
api/test-current.txt
core/java/android/os/StrictMode.java