mirror of
https://github.com/strukturag/nextcloud-spreed-signaling
synced 2026-03-14 14:35:44 +01:00
Update generated files from 49d9f873dd
This commit is contained in:
parent
49d9f873dd
commit
595a23ca0a
4 changed files with 13 additions and 13 deletions
|
|
@ -81,7 +81,7 @@ type RpcBackendServer interface {
|
|||
type UnimplementedRpcBackendServer struct{}
|
||||
|
||||
func (UnimplementedRpcBackendServer) GetSessionCount(context.Context, *GetSessionCountRequest) (*GetSessionCountReply, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method GetSessionCount not implemented")
|
||||
return nil, status.Error(codes.Unimplemented, "method GetSessionCount not implemented")
|
||||
}
|
||||
func (UnimplementedRpcBackendServer) mustEmbedUnimplementedRpcBackendServer() {}
|
||||
func (UnimplementedRpcBackendServer) testEmbeddedByValue() {}
|
||||
|
|
@ -94,7 +94,7 @@ type UnsafeRpcBackendServer interface {
|
|||
}
|
||||
|
||||
func RegisterRpcBackendServer(s grpc.ServiceRegistrar, srv RpcBackendServer) {
|
||||
// If the following call pancis, it indicates UnimplementedRpcBackendServer was
|
||||
// If the following call panics, it indicates UnimplementedRpcBackendServer 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.
|
||||
|
|
|
|||
|
|
@ -94,10 +94,10 @@ type RpcInternalServer interface {
|
|||
type UnimplementedRpcInternalServer struct{}
|
||||
|
||||
func (UnimplementedRpcInternalServer) GetServerId(context.Context, *GetServerIdRequest) (*GetServerIdReply, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method GetServerId not implemented")
|
||||
return nil, status.Error(codes.Unimplemented, "method GetServerId not implemented")
|
||||
}
|
||||
func (UnimplementedRpcInternalServer) GetTransientData(context.Context, *GetTransientDataRequest) (*GetTransientDataReply, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method GetTransientData not implemented")
|
||||
return nil, status.Error(codes.Unimplemented, "method GetTransientData not implemented")
|
||||
}
|
||||
func (UnimplementedRpcInternalServer) mustEmbedUnimplementedRpcInternalServer() {}
|
||||
func (UnimplementedRpcInternalServer) testEmbeddedByValue() {}
|
||||
|
|
@ -110,7 +110,7 @@ type UnsafeRpcInternalServer interface {
|
|||
}
|
||||
|
||||
func RegisterRpcInternalServer(s grpc.ServiceRegistrar, srv RpcInternalServer) {
|
||||
// If the following call pancis, it indicates UnimplementedRpcInternalServer was
|
||||
// If the following call panics, it indicates UnimplementedRpcInternalServer 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.
|
||||
|
|
|
|||
|
|
@ -81,7 +81,7 @@ type RpcMcuServer interface {
|
|||
type UnimplementedRpcMcuServer struct{}
|
||||
|
||||
func (UnimplementedRpcMcuServer) GetPublisherId(context.Context, *GetPublisherIdRequest) (*GetPublisherIdReply, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method GetPublisherId not implemented")
|
||||
return nil, status.Error(codes.Unimplemented, "method GetPublisherId not implemented")
|
||||
}
|
||||
func (UnimplementedRpcMcuServer) mustEmbedUnimplementedRpcMcuServer() {}
|
||||
func (UnimplementedRpcMcuServer) testEmbeddedByValue() {}
|
||||
|
|
@ -94,7 +94,7 @@ type UnsafeRpcMcuServer interface {
|
|||
}
|
||||
|
||||
func RegisterRpcMcuServer(s grpc.ServiceRegistrar, srv RpcMcuServer) {
|
||||
// If the following call pancis, it indicates UnimplementedRpcMcuServer was
|
||||
// If the following call panics, it indicates UnimplementedRpcMcuServer 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.
|
||||
|
|
|
|||
|
|
@ -136,19 +136,19 @@ type RpcSessionsServer interface {
|
|||
type UnimplementedRpcSessionsServer struct{}
|
||||
|
||||
func (UnimplementedRpcSessionsServer) LookupResumeId(context.Context, *LookupResumeIdRequest) (*LookupResumeIdReply, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method LookupResumeId not implemented")
|
||||
return nil, status.Error(codes.Unimplemented, "method LookupResumeId not implemented")
|
||||
}
|
||||
func (UnimplementedRpcSessionsServer) LookupSessionId(context.Context, *LookupSessionIdRequest) (*LookupSessionIdReply, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method LookupSessionId not implemented")
|
||||
return nil, status.Error(codes.Unimplemented, "method LookupSessionId not implemented")
|
||||
}
|
||||
func (UnimplementedRpcSessionsServer) IsSessionInCall(context.Context, *IsSessionInCallRequest) (*IsSessionInCallReply, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method IsSessionInCall not implemented")
|
||||
return nil, status.Error(codes.Unimplemented, "method IsSessionInCall not implemented")
|
||||
}
|
||||
func (UnimplementedRpcSessionsServer) GetInternalSessions(context.Context, *GetInternalSessionsRequest) (*GetInternalSessionsReply, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method GetInternalSessions not implemented")
|
||||
return nil, status.Error(codes.Unimplemented, "method GetInternalSessions not implemented")
|
||||
}
|
||||
func (UnimplementedRpcSessionsServer) ProxySession(grpc.BidiStreamingServer[ClientSessionMessage, ServerSessionMessage]) error {
|
||||
return status.Errorf(codes.Unimplemented, "method ProxySession not implemented")
|
||||
return status.Error(codes.Unimplemented, "method ProxySession not implemented")
|
||||
}
|
||||
func (UnimplementedRpcSessionsServer) mustEmbedUnimplementedRpcSessionsServer() {}
|
||||
func (UnimplementedRpcSessionsServer) testEmbeddedByValue() {}
|
||||
|
|
@ -161,7 +161,7 @@ type UnsafeRpcSessionsServer interface {
|
|||
}
|
||||
|
||||
func RegisterRpcSessionsServer(s grpc.ServiceRegistrar, srv RpcSessionsServer) {
|
||||
// If the following call pancis, it indicates UnimplementedRpcSessionsServer was
|
||||
// If the following call panics, it indicates UnimplementedRpcSessionsServer 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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue