Style-related changes
[zxing.git] / android / src / com / google / zxing / client / android / wifi / Killer.java
1 /*
2  * Copyright (C) 2010 ZXing authors
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.google.zxing.client.android.wifi;
18
19 import java.util.Timer;
20 import java.util.TimerTask;
21
22 import android.app.Activity;
23 import android.os.Handler;
24
25 /**
26  * Close the parent after a delay.
27  * @author Vikram Aggarwal
28  */
29 final class Killer implements Runnable {
30
31   // Three full seconds
32   private static final long DELAY_MS = 3 * 1000L;
33
34   private final Activity parent;
35
36   Killer(Activity parent) {
37     this.parent = parent;
38   }
39
40   public void run() {
41     final Handler handler = new Handler();
42     Timer t = new Timer();
43     t.schedule(new TimerTask() {
44       @Override
45       public void run() {
46         handler.post(new Runnable() {
47           public void run() {
48             parent.finish();
49           }
50         });
51       }
52     }, DELAY_MS);
53   }
54 }