Documentation ¶
Index ¶
- type BadgeState
- func (b *BadgeState) Clear()
- func (b *BadgeState) Export() (keybase1.BadgeState, error)
- func (b *BadgeState) FindResetMemberBadges(teamName string) (badges []keybase1.TeamMemberOutReset)
- func (b *BadgeState) SetWalletAccountUnreadCount(accountID stellar1.AccountID, unreadCount int)
- func (b *BadgeState) UpdateWithChat(ctx context.Context, update chat1.UnreadUpdate, inboxVers chat1.InboxVers)
- func (b *BadgeState) UpdateWithChatFull(ctx context.Context, update chat1.UnreadUpdateFull)
- func (b *BadgeState) UpdateWithGregor(ctx context.Context, gstate gregor.State) error
- type Badger
- func (b *Badger) Clear(ctx context.Context)
- func (b *Badger) PushChatUpdate(ctx context.Context, update chat1.UnreadUpdate, inboxVers chat1.InboxVers)
- func (b *Badger) PushState(ctx context.Context, state gregor1.State)
- func (b *Badger) Resync(ctx context.Context, chatRemote func() chat1.RemoteInterface, ...) (err error)
- func (b *Badger) Send(ctx context.Context) error
- func (b *Badger) SetInboxVersionSource(s InboxVersionSource)
- func (b *Badger) SetWalletAccountUnreadCount(ctx context.Context, accountID stellar1.AccountID, unreadCount int)
- func (b *Badger) State() *BadgeState
- type InboxVersionSource
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BadgeState ¶
BadgeState represents the number of badges on the app. It's threadsafe. Useable from both the client service and gregor server. See service:Badger for the service part that owns this.
func NewBadgeState ¶
func NewBadgeState(log logger.Logger) *BadgeState
NewBadgeState creates a new empty BadgeState.
func (*BadgeState) Clear ¶
func (b *BadgeState) Clear()
func (*BadgeState) Export ¶
func (b *BadgeState) Export() (keybase1.BadgeState, error)
Exports the state summary
func (*BadgeState) FindResetMemberBadges ¶ added in v1.0.42
func (b *BadgeState) FindResetMemberBadges(teamName string) (badges []keybase1.TeamMemberOutReset)
func (*BadgeState) SetWalletAccountUnreadCount ¶
func (b *BadgeState) SetWalletAccountUnreadCount(accountID stellar1.AccountID, unreadCount int)
SetWalletAccountUnreadCount sets the unread count for a wallet account.
func (*BadgeState) UpdateWithChat ¶
func (b *BadgeState) UpdateWithChat(ctx context.Context, update chat1.UnreadUpdate, inboxVers chat1.InboxVers)
func (*BadgeState) UpdateWithChatFull ¶
func (b *BadgeState) UpdateWithChatFull(ctx context.Context, update chat1.UnreadUpdateFull)
func (*BadgeState) UpdateWithGregor ¶
UpdateWithGregor updates the badge state from a gregor state.
type Badger ¶
type Badger struct { libkb.Contextified // contains filtered or unexported fields }
Badger keeps a BadgeState up to date and broadcasts it to electron. This is the client-specific glue. The state is kept up to date by subscribing to: - All gregor state updates - All chat.activity gregor OOBMs - Logout
func NewBadger ¶
func NewBadger(g *libkb.GlobalContext) *Badger
func (*Badger) PushChatUpdate ¶
func (*Badger) Resync ¶
func (b *Badger) Resync(ctx context.Context, chatRemote func() chat1.RemoteInterface, gcli *grclient.Client, update *chat1.UnreadUpdateFull) (err error)
func (*Badger) SetInboxVersionSource ¶ added in v1.0.27
func (b *Badger) SetInboxVersionSource(s InboxVersionSource)
func (*Badger) SetWalletAccountUnreadCount ¶
func (*Badger) State ¶
func (b *Badger) State() *BadgeState
Click to show internal directories.
Click to hide internal directories.