rk
昨天 4a8ff39b0fab0627ef8f7459587d514cc01c3676
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.doumee.lib_coremodel.base;
 
import android.app.IntentService;
 
 
/**
 * MVVMFrame 框架基于Google官方的 JetPack 构建,在使用MVVMFrame时,需遵循一些规范:
 *
 * 如果您继承使用了BaseIntentService或其子类,你需要参照如下方式添加@AndroidEntryPoint注解
 *
 * @example Service
 * //-------------------------
 *    @AndroidEntryPoint
 *    public class YourIntentService extends BaseIntentService {
 *
 *    }
 * //-------------------------
 *
 * @author <a href="mailto:jenly1314@gmail.com">Jenly</a>
 */
public abstract class BaseIntentService extends IntentService {
 
    /**
     * Creates an IntentService.  Invoked by your subclass's constructor.
     *
     * @param name Used to name the worker thread, important only for debugging.
     */
    public BaseIntentService(String name) {
        super(name);
    }
 
}