// Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.6.0 // - protoc v3.21.12 // source: proto/channel.proto package v1 import ( context "context" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" ) // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. // Requires gRPC-Go v1.64.0 or later. const _ = grpc.SupportPackageIsVersion9 const ( ChannelService_CreateChannel_FullMethodName = "/openspeak.v1.ChannelService/CreateChannel" ChannelService_GetChannel_FullMethodName = "/openspeak.v1.ChannelService/GetChannel" ChannelService_ListChannels_FullMethodName = "/openspeak.v1.ChannelService/ListChannels" ChannelService_UpdateChannel_FullMethodName = "/openspeak.v1.ChannelService/UpdateChannel" ChannelService_DeleteChannel_FullMethodName = "/openspeak.v1.ChannelService/DeleteChannel" ChannelService_JoinChannel_FullMethodName = "/openspeak.v1.ChannelService/JoinChannel" ChannelService_LeaveChannel_FullMethodName = "/openspeak.v1.ChannelService/LeaveChannel" ChannelService_ListMembers_FullMethodName = "/openspeak.v1.ChannelService/ListMembers" ChannelService_SubscribeChannelEvents_FullMethodName = "/openspeak.v1.ChannelService/SubscribeChannelEvents" ) // ChannelServiceClient is the client API for ChannelService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. type ChannelServiceClient interface { CreateChannel(ctx context.Context, in *CreateChannelRequest, opts ...grpc.CallOption) (*CreateChannelResponse, error) GetChannel(ctx context.Context, in *GetChannelRequest, opts ...grpc.CallOption) (*Channel, error) ListChannels(ctx context.Context, in *ListChannelsRequest, opts ...grpc.CallOption) (*ListChannelsResponse, error) UpdateChannel(ctx context.Context, in *UpdateChannelRequest, opts ...grpc.CallOption) (*Channel, error) DeleteChannel(ctx context.Context, in *DeleteChannelRequest, opts ...grpc.CallOption) (*Status, error) JoinChannel(ctx context.Context, in *JoinChannelRequest, opts ...grpc.CallOption) (*JoinChannelResponse, error) LeaveChannel(ctx context.Context, in *LeaveChannelRequest, opts ...grpc.CallOption) (*Status, error) ListMembers(ctx context.Context, in *ListMembersRequest, opts ...grpc.CallOption) (*ListMembersResponse, error) SubscribeChannelEvents(ctx context.Context, in *SubscribeChannelEventsRequest, opts ...grpc.CallOption) (grpc.ServerStreamingClient[ChannelEvent], error) } type channelServiceClient struct { cc grpc.ClientConnInterface } func NewChannelServiceClient(cc grpc.ClientConnInterface) ChannelServiceClient { return &channelServiceClient{cc} } func (c *channelServiceClient) CreateChannel(ctx context.Context, in *CreateChannelRequest, opts ...grpc.CallOption) (*CreateChannelResponse, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(CreateChannelResponse) err := c.cc.Invoke(ctx, ChannelService_CreateChannel_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *channelServiceClient) GetChannel(ctx context.Context, in *GetChannelRequest, opts ...grpc.CallOption) (*Channel, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(Channel) err := c.cc.Invoke(ctx, ChannelService_GetChannel_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *channelServiceClient) ListChannels(ctx context.Context, in *ListChannelsRequest, opts ...grpc.CallOption) (*ListChannelsResponse, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(ListChannelsResponse) err := c.cc.Invoke(ctx, ChannelService_ListChannels_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *channelServiceClient) UpdateChannel(ctx context.Context, in *UpdateChannelRequest, opts ...grpc.CallOption) (*Channel, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(Channel) err := c.cc.Invoke(ctx, ChannelService_UpdateChannel_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *channelServiceClient) DeleteChannel(ctx context.Context, in *DeleteChannelRequest, opts ...grpc.CallOption) (*Status, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(Status) err := c.cc.Invoke(ctx, ChannelService_DeleteChannel_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *channelServiceClient) JoinChannel(ctx context.Context, in *JoinChannelRequest, opts ...grpc.CallOption) (*JoinChannelResponse, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(JoinChannelResponse) err := c.cc.Invoke(ctx, ChannelService_JoinChannel_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *channelServiceClient) LeaveChannel(ctx context.Context, in *LeaveChannelRequest, opts ...grpc.CallOption) (*Status, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(Status) err := c.cc.Invoke(ctx, ChannelService_LeaveChannel_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *channelServiceClient) ListMembers(ctx context.Context, in *ListMembersRequest, opts ...grpc.CallOption) (*ListMembersResponse, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(ListMembersResponse) err := c.cc.Invoke(ctx, ChannelService_ListMembers_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *channelServiceClient) SubscribeChannelEvents(ctx context.Context, in *SubscribeChannelEventsRequest, opts ...grpc.CallOption) (grpc.ServerStreamingClient[ChannelEvent], error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) stream, err := c.cc.NewStream(ctx, &ChannelService_ServiceDesc.Streams[0], ChannelService_SubscribeChannelEvents_FullMethodName, cOpts...) if err != nil { return nil, err } x := &grpc.GenericClientStream[SubscribeChannelEventsRequest, ChannelEvent]{ClientStream: stream} if err := x.ClientStream.SendMsg(in); err != nil { return nil, err } if err := x.ClientStream.CloseSend(); err != nil { return nil, err } return x, nil } // This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name. type ChannelService_SubscribeChannelEventsClient = grpc.ServerStreamingClient[ChannelEvent] // ChannelServiceServer is the server API for ChannelService service. // All implementations must embed UnimplementedChannelServiceServer // for forward compatibility. type ChannelServiceServer interface { CreateChannel(context.Context, *CreateChannelRequest) (*CreateChannelResponse, error) GetChannel(context.Context, *GetChannelRequest) (*Channel, error) ListChannels(context.Context, *ListChannelsRequest) (*ListChannelsResponse, error) UpdateChannel(context.Context, *UpdateChannelRequest) (*Channel, error) DeleteChannel(context.Context, *DeleteChannelRequest) (*Status, error) JoinChannel(context.Context, *JoinChannelRequest) (*JoinChannelResponse, error) LeaveChannel(context.Context, *LeaveChannelRequest) (*Status, error) ListMembers(context.Context, *ListMembersRequest) (*ListMembersResponse, error) SubscribeChannelEvents(*SubscribeChannelEventsRequest, grpc.ServerStreamingServer[ChannelEvent]) error mustEmbedUnimplementedChannelServiceServer() } // UnimplementedChannelServiceServer must be embedded to have // forward compatible implementations. // // NOTE: this should be embedded by value instead of pointer to avoid a nil // pointer dereference when methods are called. type UnimplementedChannelServiceServer struct{} func (UnimplementedChannelServiceServer) CreateChannel(context.Context, *CreateChannelRequest) (*CreateChannelResponse, error) { return nil, status.Error(codes.Unimplemented, "method CreateChannel not implemented") } func (UnimplementedChannelServiceServer) GetChannel(context.Context, *GetChannelRequest) (*Channel, error) { return nil, status.Error(codes.Unimplemented, "method GetChannel not implemented") } func (UnimplementedChannelServiceServer) ListChannels(context.Context, *ListChannelsRequest) (*ListChannelsResponse, error) { return nil, status.Error(codes.Unimplemented, "method ListChannels not implemented") } func (UnimplementedChannelServiceServer) UpdateChannel(context.Context, *UpdateChannelRequest) (*Channel, error) { return nil, status.Error(codes.Unimplemented, "method UpdateChannel not implemented") } func (UnimplementedChannelServiceServer) DeleteChannel(context.Context, *DeleteChannelRequest) (*Status, error) { return nil, status.Error(codes.Unimplemented, "method DeleteChannel not implemented") } func (UnimplementedChannelServiceServer) JoinChannel(context.Context, *JoinChannelRequest) (*JoinChannelResponse, error) { return nil, status.Error(codes.Unimplemented, "method JoinChannel not implemented") } func (UnimplementedChannelServiceServer) LeaveChannel(context.Context, *LeaveChannelRequest) (*Status, error) { return nil, status.Error(codes.Unimplemented, "method LeaveChannel not implemented") } func (UnimplementedChannelServiceServer) ListMembers(context.Context, *ListMembersRequest) (*ListMembersResponse, error) { return nil, status.Error(codes.Unimplemented, "method ListMembers not implemented") } func (UnimplementedChannelServiceServer) SubscribeChannelEvents(*SubscribeChannelEventsRequest, grpc.ServerStreamingServer[ChannelEvent]) error { return status.Error(codes.Unimplemented, "method SubscribeChannelEvents not implemented") } func (UnimplementedChannelServiceServer) mustEmbedUnimplementedChannelServiceServer() {} func (UnimplementedChannelServiceServer) testEmbeddedByValue() {} // UnsafeChannelServiceServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to ChannelServiceServer will // result in compilation errors. type UnsafeChannelServiceServer interface { mustEmbedUnimplementedChannelServiceServer() } func RegisterChannelServiceServer(s grpc.ServiceRegistrar, srv ChannelServiceServer) { // If the following call panics, it indicates UnimplementedChannelServiceServer was // embedded by pointer and is nil. This will cause panics if an // unimplemented method is ever invoked, so we test this at initialization // time to prevent it from happening at runtime later due to I/O. if t, ok := srv.(interface{ testEmbeddedByValue() }); ok { t.testEmbeddedByValue() } s.RegisterService(&ChannelService_ServiceDesc, srv) } func _ChannelService_CreateChannel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(CreateChannelRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ChannelServiceServer).CreateChannel(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: ChannelService_CreateChannel_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ChannelServiceServer).CreateChannel(ctx, req.(*CreateChannelRequest)) } return interceptor(ctx, in, info, handler) } func _ChannelService_GetChannel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(GetChannelRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ChannelServiceServer).GetChannel(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: ChannelService_GetChannel_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ChannelServiceServer).GetChannel(ctx, req.(*GetChannelRequest)) } return interceptor(ctx, in, info, handler) } func _ChannelService_ListChannels_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ListChannelsRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ChannelServiceServer).ListChannels(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: ChannelService_ListChannels_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ChannelServiceServer).ListChannels(ctx, req.(*ListChannelsRequest)) } return interceptor(ctx, in, info, handler) } func _ChannelService_UpdateChannel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(UpdateChannelRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ChannelServiceServer).UpdateChannel(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: ChannelService_UpdateChannel_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ChannelServiceServer).UpdateChannel(ctx, req.(*UpdateChannelRequest)) } return interceptor(ctx, in, info, handler) } func _ChannelService_DeleteChannel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(DeleteChannelRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ChannelServiceServer).DeleteChannel(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: ChannelService_DeleteChannel_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ChannelServiceServer).DeleteChannel(ctx, req.(*DeleteChannelRequest)) } return interceptor(ctx, in, info, handler) } func _ChannelService_JoinChannel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(JoinChannelRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ChannelServiceServer).JoinChannel(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: ChannelService_JoinChannel_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ChannelServiceServer).JoinChannel(ctx, req.(*JoinChannelRequest)) } return interceptor(ctx, in, info, handler) } func _ChannelService_LeaveChannel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(LeaveChannelRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ChannelServiceServer).LeaveChannel(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: ChannelService_LeaveChannel_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ChannelServiceServer).LeaveChannel(ctx, req.(*LeaveChannelRequest)) } return interceptor(ctx, in, info, handler) } func _ChannelService_ListMembers_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ListMembersRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ChannelServiceServer).ListMembers(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: ChannelService_ListMembers_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ChannelServiceServer).ListMembers(ctx, req.(*ListMembersRequest)) } return interceptor(ctx, in, info, handler) } func _ChannelService_SubscribeChannelEvents_Handler(srv interface{}, stream grpc.ServerStream) error { m := new(SubscribeChannelEventsRequest) if err := stream.RecvMsg(m); err != nil { return err } return srv.(ChannelServiceServer).SubscribeChannelEvents(m, &grpc.GenericServerStream[SubscribeChannelEventsRequest, ChannelEvent]{ServerStream: stream}) } // This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name. type ChannelService_SubscribeChannelEventsServer = grpc.ServerStreamingServer[ChannelEvent] // ChannelService_ServiceDesc is the grpc.ServiceDesc for ChannelService service. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var ChannelService_ServiceDesc = grpc.ServiceDesc{ ServiceName: "openspeak.v1.ChannelService", HandlerType: (*ChannelServiceServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "CreateChannel", Handler: _ChannelService_CreateChannel_Handler, }, { MethodName: "GetChannel", Handler: _ChannelService_GetChannel_Handler, }, { MethodName: "ListChannels", Handler: _ChannelService_ListChannels_Handler, }, { MethodName: "UpdateChannel", Handler: _ChannelService_UpdateChannel_Handler, }, { MethodName: "DeleteChannel", Handler: _ChannelService_DeleteChannel_Handler, }, { MethodName: "JoinChannel", Handler: _ChannelService_JoinChannel_Handler, }, { MethodName: "LeaveChannel", Handler: _ChannelService_LeaveChannel_Handler, }, { MethodName: "ListMembers", Handler: _ChannelService_ListMembers_Handler, }, }, Streams: []grpc.StreamDesc{ { StreamName: "SubscribeChannelEvents", Handler: _ChannelService_SubscribeChannelEvents_Handler, ServerStreams: true, }, }, Metadata: "proto/channel.proto", }