github.com/keybase/client/go@v0.0.0-20241007131713-f10651d043c8/protocol/keybase1/notify_simple_fs.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_simple_fs.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 SimpleFSArchiveStatusChangedArg struct { 13 Status SimpleFSArchiveStatus `codec:"status" json:"status"` 14 } 15 16 type NotifySimpleFSInterface interface { 17 SimpleFSArchiveStatusChanged(context.Context, SimpleFSArchiveStatus) error 18 } 19 20 func NotifySimpleFSProtocol(i NotifySimpleFSInterface) rpc.Protocol { 21 return rpc.Protocol{ 22 Name: "keybase.1.NotifySimpleFS", 23 Methods: map[string]rpc.ServeHandlerDescription{ 24 "simpleFSArchiveStatusChanged": { 25 MakeArg: func() interface{} { 26 var ret [1]SimpleFSArchiveStatusChangedArg 27 return &ret 28 }, 29 Handler: func(ctx context.Context, args interface{}) (ret interface{}, err error) { 30 typedArgs, ok := args.(*[1]SimpleFSArchiveStatusChangedArg) 31 if !ok { 32 err = rpc.NewTypeError((*[1]SimpleFSArchiveStatusChangedArg)(nil), args) 33 return 34 } 35 err = i.SimpleFSArchiveStatusChanged(ctx, typedArgs[0].Status) 36 return 37 }, 38 }, 39 }, 40 } 41 } 42 43 type NotifySimpleFSClient struct { 44 Cli rpc.GenericClient 45 } 46 47 func (c NotifySimpleFSClient) SimpleFSArchiveStatusChanged(ctx context.Context, status SimpleFSArchiveStatus) (err error) { 48 __arg := SimpleFSArchiveStatusChangedArg{Status: status} 49 err = c.Cli.Notify(ctx, "keybase.1.NotifySimpleFS.simpleFSArchiveStatusChanged", []interface{}{__arg}, 0*time.Millisecond) 50 return 51 }