2023-08-06 23:36:50 +08:00
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
// - protoc-gen-go-grpc v1.3.0
// - protoc v3.19.4
// source: service_login_session.proto
package pb
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.32.0 or later.
const _ = grpc . SupportPackageIsVersion7
const (
LoginSessionService_WriteLoginSessionValue_FullMethodName = "/pb.LoginSessionService/writeLoginSessionValue"
LoginSessionService_DeleteLoginSession_FullMethodName = "/pb.LoginSessionService/deleteLoginSession"
LoginSessionService_FindLoginSession_FullMethodName = "/pb.LoginSessionService/findLoginSession"
2024-05-03 12:09:45 +08:00
LoginSessionService_ClearOldLoginSessions_FullMethodName = "/pb.LoginSessionService/clearOldLoginSessions"
2023-08-06 23:36:50 +08:00
)
// LoginSessionServiceClient is the client API for LoginSessionService 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 LoginSessionServiceClient interface {
// 写入SESSION数据
WriteLoginSessionValue ( ctx context . Context , in * WriteLoginSessionValueRequest , opts ... grpc . CallOption ) ( * RPCSuccess , error )
// 删除SESSION
DeleteLoginSession ( ctx context . Context , in * DeleteLoginSessionRequest , opts ... grpc . CallOption ) ( * RPCSuccess , error )
// 查找SESSION
FindLoginSession ( ctx context . Context , in * FindLoginSessionRequest , opts ... grpc . CallOption ) ( * FindLoginSessionResponse , error )
2024-05-03 12:09:45 +08:00
// 清理老的SESSION
ClearOldLoginSessions ( ctx context . Context , in * ClearOldLoginSessionsRequest , opts ... grpc . CallOption ) ( * RPCSuccess , error )
2023-08-06 23:36:50 +08:00
}
type loginSessionServiceClient struct {
cc grpc . ClientConnInterface
}
func NewLoginSessionServiceClient ( cc grpc . ClientConnInterface ) LoginSessionServiceClient {
return & loginSessionServiceClient { cc }
}
func ( c * loginSessionServiceClient ) WriteLoginSessionValue ( ctx context . Context , in * WriteLoginSessionValueRequest , opts ... grpc . CallOption ) ( * RPCSuccess , error ) {
out := new ( RPCSuccess )
err := c . cc . Invoke ( ctx , LoginSessionService_WriteLoginSessionValue_FullMethodName , in , out , opts ... )
if err != nil {
return nil , err
}
return out , nil
}
func ( c * loginSessionServiceClient ) DeleteLoginSession ( ctx context . Context , in * DeleteLoginSessionRequest , opts ... grpc . CallOption ) ( * RPCSuccess , error ) {
out := new ( RPCSuccess )
err := c . cc . Invoke ( ctx , LoginSessionService_DeleteLoginSession_FullMethodName , in , out , opts ... )
if err != nil {
return nil , err
}
return out , nil
}
func ( c * loginSessionServiceClient ) FindLoginSession ( ctx context . Context , in * FindLoginSessionRequest , opts ... grpc . CallOption ) ( * FindLoginSessionResponse , error ) {
out := new ( FindLoginSessionResponse )
err := c . cc . Invoke ( ctx , LoginSessionService_FindLoginSession_FullMethodName , in , out , opts ... )
if err != nil {
return nil , err
}
return out , nil
}
2024-05-03 12:09:45 +08:00
func ( c * loginSessionServiceClient ) ClearOldLoginSessions ( ctx context . Context , in * ClearOldLoginSessionsRequest , opts ... grpc . CallOption ) ( * RPCSuccess , error ) {
out := new ( RPCSuccess )
err := c . cc . Invoke ( ctx , LoginSessionService_ClearOldLoginSessions_FullMethodName , in , out , opts ... )
if err != nil {
return nil , err
}
return out , nil
}
2023-08-06 23:36:50 +08:00
// LoginSessionServiceServer is the server API for LoginSessionService service.
// All implementations should embed UnimplementedLoginSessionServiceServer
// for forward compatibility
type LoginSessionServiceServer interface {
// 写入SESSION数据
WriteLoginSessionValue ( context . Context , * WriteLoginSessionValueRequest ) ( * RPCSuccess , error )
// 删除SESSION
DeleteLoginSession ( context . Context , * DeleteLoginSessionRequest ) ( * RPCSuccess , error )
// 查找SESSION
FindLoginSession ( context . Context , * FindLoginSessionRequest ) ( * FindLoginSessionResponse , error )
2024-05-03 12:09:45 +08:00
// 清理老的SESSION
ClearOldLoginSessions ( context . Context , * ClearOldLoginSessionsRequest ) ( * RPCSuccess , error )
2023-08-06 23:36:50 +08:00
}
// UnimplementedLoginSessionServiceServer should be embedded to have forward compatible implementations.
type UnimplementedLoginSessionServiceServer struct {
}
func ( UnimplementedLoginSessionServiceServer ) WriteLoginSessionValue ( context . Context , * WriteLoginSessionValueRequest ) ( * RPCSuccess , error ) {
return nil , status . Errorf ( codes . Unimplemented , "method WriteLoginSessionValue not implemented" )
}
func ( UnimplementedLoginSessionServiceServer ) DeleteLoginSession ( context . Context , * DeleteLoginSessionRequest ) ( * RPCSuccess , error ) {
return nil , status . Errorf ( codes . Unimplemented , "method DeleteLoginSession not implemented" )
}
func ( UnimplementedLoginSessionServiceServer ) FindLoginSession ( context . Context , * FindLoginSessionRequest ) ( * FindLoginSessionResponse , error ) {
return nil , status . Errorf ( codes . Unimplemented , "method FindLoginSession not implemented" )
}
2024-05-03 12:09:45 +08:00
func ( UnimplementedLoginSessionServiceServer ) ClearOldLoginSessions ( context . Context , * ClearOldLoginSessionsRequest ) ( * RPCSuccess , error ) {
return nil , status . Errorf ( codes . Unimplemented , "method ClearOldLoginSessions not implemented" )
}
2023-08-06 23:36:50 +08:00
// UnsafeLoginSessionServiceServer may be embedded to opt out of forward compatibility for this service.
// Use of this interface is not recommended, as added methods to LoginSessionServiceServer will
// result in compilation errors.
type UnsafeLoginSessionServiceServer interface {
mustEmbedUnimplementedLoginSessionServiceServer ( )
}
func RegisterLoginSessionServiceServer ( s grpc . ServiceRegistrar , srv LoginSessionServiceServer ) {
s . RegisterService ( & LoginSessionService_ServiceDesc , srv )
}
func _LoginSessionService_WriteLoginSessionValue_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( WriteLoginSessionValueRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( LoginSessionServiceServer ) . WriteLoginSessionValue ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : LoginSessionService_WriteLoginSessionValue_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( LoginSessionServiceServer ) . WriteLoginSessionValue ( ctx , req . ( * WriteLoginSessionValueRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
func _LoginSessionService_DeleteLoginSession_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( DeleteLoginSessionRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( LoginSessionServiceServer ) . DeleteLoginSession ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : LoginSessionService_DeleteLoginSession_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( LoginSessionServiceServer ) . DeleteLoginSession ( ctx , req . ( * DeleteLoginSessionRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
func _LoginSessionService_FindLoginSession_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( FindLoginSessionRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( LoginSessionServiceServer ) . FindLoginSession ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : LoginSessionService_FindLoginSession_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( LoginSessionServiceServer ) . FindLoginSession ( ctx , req . ( * FindLoginSessionRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
2024-05-03 12:09:45 +08:00
func _LoginSessionService_ClearOldLoginSessions_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( ClearOldLoginSessionsRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( LoginSessionServiceServer ) . ClearOldLoginSessions ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : LoginSessionService_ClearOldLoginSessions_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( LoginSessionServiceServer ) . ClearOldLoginSessions ( ctx , req . ( * ClearOldLoginSessionsRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
2023-08-06 23:36:50 +08:00
// LoginSessionService_ServiceDesc is the grpc.ServiceDesc for LoginSessionService service.
// It's only intended for direct use with grpc.RegisterService,
// and not to be introspected or modified (even as a copy)
var LoginSessionService_ServiceDesc = grpc . ServiceDesc {
ServiceName : "pb.LoginSessionService" ,
HandlerType : ( * LoginSessionServiceServer ) ( nil ) ,
Methods : [ ] grpc . MethodDesc {
{
MethodName : "writeLoginSessionValue" ,
Handler : _LoginSessionService_WriteLoginSessionValue_Handler ,
} ,
{
MethodName : "deleteLoginSession" ,
Handler : _LoginSessionService_DeleteLoginSession_Handler ,
} ,
{
MethodName : "findLoginSession" ,
Handler : _LoginSessionService_FindLoginSession_Handler ,
} ,
2024-05-03 12:09:45 +08:00
{
MethodName : "clearOldLoginSessions" ,
Handler : _LoginSessionService_ClearOldLoginSessions_Handler ,
} ,
2023-08-06 23:36:50 +08:00
} ,
Streams : [ ] grpc . StreamDesc { } ,
Metadata : "service_login_session.proto" ,
}