github.com/keybase/client/go@v0.0.0-20240309051027-028f7c731f8b/protocol/keybase1/notify_favorites.go (about) 1 // Auto-generated to Go types and interfaces using avdl-compiler v1.4.10 (https://github.com/keybase/node-avdl-compiler) 2 // Input file: avdl/keybase1/notify_favorites.avdl 3 4 package keybase1 5 6 import ( 7 "github.com/keybase/go-framed-msgpack-rpc/rpc" 8 context "golang.org/x/net/context" 9 "time" 10 ) 11 12 type FavoritesChangedArg struct { 13 Uid UID `codec:"uid" json:"uid"` 14 } 15 16 type NotifyFavoritesInterface interface { 17 FavoritesChanged(context.Context, UID) error 18 } 19 20 func NotifyFavoritesProtocol(i NotifyFavoritesInterface) rpc.Protocol { 21 return rpc.Protocol{ 22 Name: "keybase.1.NotifyFavorites", 23 Methods: map[string]rpc.ServeHandlerDescription{ 24 "favoritesChanged": { 25 MakeArg: func() interface{} { 26 var ret [1]FavoritesChangedArg 27 return &ret 28 }, 29 Handler: func(ctx context.Context, args interface{}) (ret interface{}, err error) { 30 typedArgs, ok := args.(*[1]FavoritesChangedArg) 31 if !ok { 32 err = rpc.NewTypeError((*[1]FavoritesChangedArg)(nil), args) 33 return 34 } 35 err = i.FavoritesChanged(ctx, typedArgs[0].Uid) 36 return 37 }, 38 }, 39 }, 40 } 41 } 42 43 type NotifyFavoritesClient struct { 44 Cli rpc.GenericClient 45 } 46 47 func (c NotifyFavoritesClient) FavoritesChanged(ctx context.Context, uid UID) (err error) { 48 __arg := FavoritesChangedArg{Uid: uid} 49 err = c.Cli.Notify(ctx, "keybase.1.NotifyFavorites.favoritesChanged", []interface{}{__arg}, 0*time.Millisecond) 50 return 51 }