Home
last modified time | relevance | path

Searched refs:ConvLoader (Results 1 – 22 of 22) sorted by relevance

/dports/security/keybase/client-v5.7.1/go/chat/
H A Dconvloader_test.go49 require.NoError(t, tc.Context().ConvLoader.Queue(ctx,
99 require.NoError(t, tc.Context().ConvLoader.Queue(context.TODO(),
106 require.True(t, tc.Context().ConvLoader.Suspend(context.TODO()))
112 require.False(t, tc.Context().ConvLoader.Suspend(context.TODO()))
115 require.False(t, tc.Context().ConvLoader.Resume(context.TODO()))
121 require.True(t, tc.Context().ConvLoader.Resume(context.TODO()))
136 tc.ChatG.ConvLoader.(*BackgroundConvLoader).loadWait = 0
137 tc.ChatG.ConvLoader.(*BackgroundConvLoader).clock = clock
149 require.NoError(t, tc.Context().ConvLoader.Queue(context.TODO(),
158 require.True(t, tc.Context().ConvLoader.Suspend(context.TODO()))
[all …]
H A Dlocalizer_test.go26 <-tc.Context().ConvLoader.Stop(ctx)
H A Dconvloader.go141 var _ types.ConvLoader = (*BackgroundConvLoader)(nil)
553 if err := g.ConvLoader.Queue(ctx, job); err != nil {
H A Dephemeral_purger_test.go169 require.NoError(t, tc.Context().ConvLoader.Queue(context.TODO(),
173 require.NoError(t, tc.Context().ConvLoader.Queue(context.TODO(),
H A Dsync.go468 if err := s.G().ConvLoader.Queue(ctx, job); err != nil {
482 if err := s.G().ConvLoader.Queue(ctx, job); err != nil {
H A Dephemeral_tracker_test.go52 <-g.ConvLoader.Stop(context.TODO())
H A Dconvsource_test.go539 <-tc.ChatG.ConvLoader.Stop(context.Background())
635 <-tc.Context().ConvLoader.Stop(context.TODO())
715 <-tc.Context().ConvLoader.Stop(context.TODO())
H A Dephemeral_purger.go332 if err := b.G().ConvLoader.Queue(ctx, job); err != nil {
H A Duithreadloader_test.go196 <-ctc.as(t, users[0]).h.G().ConvLoader.Stop(ctx)
469 <-ctc.as(t, users[0]).h.G().ConvLoader.Stop(ctx)
H A Dsync_test.go846 tc.Context().ConvLoader.(*BackgroundConvLoader).loadWait = 0
847 tc.Context().ConvLoader.(*BackgroundConvLoader).loads = bgLoads
848 tc.Context().ConvLoader.Start(ctx, uid)
H A Dconvsource.go62 err := s.G().ConvLoader.Queue(ctx, types.NewConvLoaderJob(convID, &chat1.Pagination{Num: 0},
969 if err := s.G().ConvLoader.Queue(ctx, types.NewConvLoaderJob(convID, &chat1.Pagination{Num: 0},
H A Duithreadloader.go292 if err := t.G().ConvLoader.Queue(ctx, types.NewConvLoaderJob(convID, p,
H A Dsender_test.go282 g.ConvLoader = convLoader
283 g.ConvLoader.Start(context.TODO(), uid)
H A Dserver_test.go450 g.ConvLoader = NewBackgroundConvLoader(g)
3249 <-ctc.as(t, users[0]).h.G().ConvLoader.Stop(ctx)
3400 <-ctc.as(t, users[0]).h.G().ConvLoader.Stop(ctx1)
3401 <-ctc.as(t, users[1]).h.G().ConvLoader.Stop(ctx2)
3575 <-ctc.as(t, users[0]).h.G().ConvLoader.Stop(ctx)
3686 <-ctc.as(t, users[0]).h.G().ConvLoader.Stop(ctx)
3782 ctc.as(t, users[0]).h.G().ConvLoader.Start(ctx, uid)
3783 ctc.as(t, users[0]).h.G().ConvLoader.(*BackgroundConvLoader).loads = bgConvLoads
4070 <-ctc.as(t, users[0]).h.G().ConvLoader.Stop(ctx)
H A Dhelper.go963 defer utils.SuspendComponent(ctx, g, g.ConvLoader)()
H A Dinboxsource.go953 if err := s.G().ConvLoader.Queue(ctx, job); err != nil {
H A Dserver.go154 h.G().ConvLoader,
/dports/security/keybase/client-v5.7.1/go/chat/globals/
H A Dglobals.go26 ConvLoader types.ConvLoader // background conversation loader member
64 ConvLoader: %v,
99 c.ConvLoader != nil,
/dports/security/keybase/client-v5.7.1/go/runtimestats/
H A Dstats.go143 stats.ConvLoaderActive = r.G().ConvLoader.IsBackgroundActive()
/dports/security/keybase/client-v5.7.1/go/service/
H A Dmain.go424 g.ConvLoader.Start(context.Background(), uid)
444 <-d.ChatG().ConvLoader.Stop(m.Ctx())
489 g.ConvLoader = chat.NewBackgroundConvLoader(g)
/dports/security/keybase/client-v5.7.1/go/kbtest/
H A Dchat.go52 if c.ChatG.ConvLoader != nil {
53 <-c.ChatG.ConvLoader.Stop(context.TODO())
/dports/security/keybase/client-v5.7.1/go/chat/types/
H A Dinterfaces.go273 type ConvLoader interface { interface