public class GoldCardData
extends java.lang.Object
限定符和类型 | 类和说明 |
---|---|
static class |
GoldCardData.Holder |
限定符和类型 | 方法和说明 |
---|---|
int |
getFirstCardStatus()
获取首充金币奖励卡状态
|
static GoldCardData |
getInstance() |
int |
getNoneCardStatus()
获取非首充金币奖励卡状态
|
long |
getNoneLeftTime()
获取非首充金币奖励卡剩余时间
|
void |
subscribeFirst(GoldCardObserver observer)
订阅首充金币冻结卡状态变更
|
void |
subscribeFirst(GoldCardObserver observer,
boolean subscribeNotify)
订阅首充金币冻结卡状态变更
|
void |
subscribeNone(GoldCardObserver observer)
订阅非首充金币冻结卡状态变更
|
void |
subscribeNone(GoldCardObserver observer,
boolean subscribeNotify)
订阅非首充金币冻结卡状态变更
|
void |
unSubscribeFirst(GoldCardObserver observer)
取消订阅首充金币冻结卡状态变更
|
void |
unSubscribeNone(GoldCardObserver observer)
取消订阅非首充金币冻结卡状态变更
|
void |
updateGoldCard(boolean hasCard)
是否有首充金币冻结卡
|
void |
updateNoneGoldCardInfo(boolean hasCard,
long timeLeft)
更新非首充金币奖励卡
|
public static final int UNKNOW
public static final int NO_CARD
public static final int HAS_CARD
public static GoldCardData getInstance()
public void updateGoldCard(boolean hasCard)
hasCard
- 是否有金币冻结卡public void updateNoneGoldCardInfo(boolean hasCard, long timeLeft)
hasCard
- 是否有金币冻结卡timeLeft
- 剩余过期时间,毫秒public int getFirstCardStatus()
public long getNoneLeftTime()
public int getNoneCardStatus()
public void subscribeFirst(GoldCardObserver observer)
observer
- public void subscribeFirst(GoldCardObserver observer, boolean subscribeNotify)
observer
- subscribeNotify
- 订阅后无论什么状态是否立刻notifypublic void unSubscribeFirst(GoldCardObserver observer)
observer
- public void subscribeNone(GoldCardObserver observer)
observer
- public void subscribeNone(GoldCardObserver observer, boolean subscribeNotify)
observer
- subscribeNotify
- 订阅后无论什么状态是否立刻notifypublic void unSubscribeNone(GoldCardObserver observer)
observer
-