2024-07-14 15:45:18 +00:00
|
|
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
|
|
// versions:
|
2024-07-30 10:31:26 +00:00
|
|
|
// protoc-gen-go v1.34.2
|
2024-07-14 15:45:18 +00:00
|
|
|
// protoc v5.27.1
|
|
|
|
// source: stream.proto
|
|
|
|
|
|
|
|
package proto
|
|
|
|
|
|
|
|
import (
|
|
|
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
|
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
|
|
reflect "reflect"
|
|
|
|
sync "sync"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// Verify that this generated code is sufficiently up-to-date.
|
|
|
|
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
|
|
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
|
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
|
|
)
|
|
|
|
|
2024-07-14 15:49:34 +00:00
|
|
|
type CountConnectionRequest struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
UserId uint64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *CountConnectionRequest) Reset() {
|
|
|
|
*x = CountConnectionRequest{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_stream_proto_msgTypes[0]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *CountConnectionRequest) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*CountConnectionRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *CountConnectionRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_stream_proto_msgTypes[0]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use CountConnectionRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*CountConnectionRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_stream_proto_rawDescGZIP(), []int{0}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *CountConnectionRequest) GetUserId() uint64 {
|
|
|
|
if x != nil {
|
|
|
|
return x.UserId
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
type CountConnectionResponse struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
Count int64 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *CountConnectionResponse) Reset() {
|
|
|
|
*x = CountConnectionResponse{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_stream_proto_msgTypes[1]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *CountConnectionResponse) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*CountConnectionResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *CountConnectionResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_stream_proto_msgTypes[1]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use CountConnectionResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*CountConnectionResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_stream_proto_rawDescGZIP(), []int{1}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *CountConnectionResponse) GetCount() int64 {
|
|
|
|
if x != nil {
|
|
|
|
return x.Count
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2024-07-14 15:45:18 +00:00
|
|
|
type PushStreamRequest struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
2024-08-23 11:08:07 +00:00
|
|
|
UserId *uint64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3,oneof" json:"user_id,omitempty"`
|
|
|
|
ClientId *uint64 `protobuf:"varint,2,opt,name=client_id,json=clientId,proto3,oneof" json:"client_id,omitempty"`
|
|
|
|
Body []byte `protobuf:"bytes,3,opt,name=body,proto3" json:"body,omitempty"`
|
2024-07-14 15:45:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x *PushStreamRequest) Reset() {
|
|
|
|
*x = PushStreamRequest{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2024-07-14 15:49:34 +00:00
|
|
|
mi := &file_stream_proto_msgTypes[2]
|
2024-07-14 15:45:18 +00:00
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *PushStreamRequest) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*PushStreamRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *PushStreamRequest) ProtoReflect() protoreflect.Message {
|
2024-07-14 15:49:34 +00:00
|
|
|
mi := &file_stream_proto_msgTypes[2]
|
2024-07-14 15:45:18 +00:00
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use PushStreamRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*PushStreamRequest) Descriptor() ([]byte, []int) {
|
2024-07-14 15:49:34 +00:00
|
|
|
return file_stream_proto_rawDescGZIP(), []int{2}
|
2024-07-14 15:45:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x *PushStreamRequest) GetUserId() uint64 {
|
2024-08-23 11:08:07 +00:00
|
|
|
if x != nil && x.UserId != nil {
|
|
|
|
return *x.UserId
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *PushStreamRequest) GetClientId() uint64 {
|
|
|
|
if x != nil && x.ClientId != nil {
|
|
|
|
return *x.ClientId
|
2024-07-14 15:45:18 +00:00
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *PushStreamRequest) GetBody() []byte {
|
|
|
|
if x != nil {
|
|
|
|
return x.Body
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-07-17 03:58:51 +00:00
|
|
|
type PushStreamBatchRequest struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
2024-08-23 11:08:07 +00:00
|
|
|
UserId []uint64 `protobuf:"varint,1,rep,packed,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
|
|
|
|
ClientId []uint64 `protobuf:"varint,2,rep,packed,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
|
|
|
|
Body []byte `protobuf:"bytes,3,opt,name=body,proto3" json:"body,omitempty"`
|
2024-07-17 03:58:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x *PushStreamBatchRequest) Reset() {
|
|
|
|
*x = PushStreamBatchRequest{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_stream_proto_msgTypes[3]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *PushStreamBatchRequest) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*PushStreamBatchRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *PushStreamBatchRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_stream_proto_msgTypes[3]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use PushStreamBatchRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*PushStreamBatchRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_stream_proto_rawDescGZIP(), []int{3}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *PushStreamBatchRequest) GetUserId() []uint64 {
|
|
|
|
if x != nil {
|
|
|
|
return x.UserId
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-08-23 11:08:07 +00:00
|
|
|
func (x *PushStreamBatchRequest) GetClientId() []uint64 {
|
|
|
|
if x != nil {
|
|
|
|
return x.ClientId
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-07-17 03:58:51 +00:00
|
|
|
func (x *PushStreamBatchRequest) GetBody() []byte {
|
|
|
|
if x != nil {
|
|
|
|
return x.Body
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-07-14 15:45:18 +00:00
|
|
|
type PushStreamResponse struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
IsAllSuccess bool `protobuf:"varint,1,opt,name=is_all_success,json=isAllSuccess,proto3" json:"is_all_success,omitempty"`
|
|
|
|
AffectedCount int64 `protobuf:"varint,2,opt,name=affected_count,json=affectedCount,proto3" json:"affected_count,omitempty"`
|
|
|
|
FailedCount int64 `protobuf:"varint,3,opt,name=failed_count,json=failedCount,proto3" json:"failed_count,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *PushStreamResponse) Reset() {
|
|
|
|
*x = PushStreamResponse{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2024-07-17 03:58:51 +00:00
|
|
|
mi := &file_stream_proto_msgTypes[4]
|
2024-07-14 15:45:18 +00:00
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *PushStreamResponse) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*PushStreamResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *PushStreamResponse) ProtoReflect() protoreflect.Message {
|
2024-07-17 03:58:51 +00:00
|
|
|
mi := &file_stream_proto_msgTypes[4]
|
2024-07-14 15:45:18 +00:00
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use PushStreamResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*PushStreamResponse) Descriptor() ([]byte, []int) {
|
2024-07-17 03:58:51 +00:00
|
|
|
return file_stream_proto_rawDescGZIP(), []int{4}
|
2024-07-14 15:45:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x *PushStreamResponse) GetIsAllSuccess() bool {
|
|
|
|
if x != nil {
|
|
|
|
return x.IsAllSuccess
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *PushStreamResponse) GetAffectedCount() int64 {
|
|
|
|
if x != nil {
|
|
|
|
return x.AffectedCount
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *PushStreamResponse) GetFailedCount() int64 {
|
|
|
|
if x != nil {
|
|
|
|
return x.FailedCount
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2024-07-20 11:47:04 +00:00
|
|
|
type StreamEventRequest struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
2024-08-23 11:08:07 +00:00
|
|
|
Event string `protobuf:"bytes,1,opt,name=event,proto3" json:"event,omitempty"`
|
|
|
|
UserId uint64 `protobuf:"varint,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
|
|
|
|
ClientId uint64 `protobuf:"varint,3,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
|
|
|
|
Payload []byte `protobuf:"bytes,4,opt,name=payload,proto3" json:"payload,omitempty"`
|
2024-07-20 11:47:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x *StreamEventRequest) Reset() {
|
|
|
|
*x = StreamEventRequest{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_stream_proto_msgTypes[5]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *StreamEventRequest) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*StreamEventRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *StreamEventRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_stream_proto_msgTypes[5]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use StreamEventRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*StreamEventRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_stream_proto_rawDescGZIP(), []int{5}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *StreamEventRequest) GetEvent() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.Event
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *StreamEventRequest) GetUserId() uint64 {
|
|
|
|
if x != nil {
|
|
|
|
return x.UserId
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2024-08-23 11:08:07 +00:00
|
|
|
func (x *StreamEventRequest) GetClientId() uint64 {
|
|
|
|
if x != nil {
|
|
|
|
return x.ClientId
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2024-08-23 10:50:14 +00:00
|
|
|
func (x *StreamEventRequest) GetPayload() []byte {
|
|
|
|
if x != nil {
|
|
|
|
return x.Payload
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-07-20 11:47:04 +00:00
|
|
|
type StreamEventResponse struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *StreamEventResponse) Reset() {
|
|
|
|
*x = StreamEventResponse{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
mi := &file_stream_proto_msgTypes[6]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *StreamEventResponse) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*StreamEventResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *StreamEventResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_stream_proto_msgTypes[6]
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
return ms
|
|
|
|
}
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use StreamEventResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*StreamEventResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_stream_proto_rawDescGZIP(), []int{6}
|
|
|
|
}
|
|
|
|
|
2024-07-14 15:45:18 +00:00
|
|
|
var File_stream_proto protoreflect.FileDescriptor
|
|
|
|
|
|
|
|
var file_stream_proto_rawDesc = []byte{
|
|
|
|
0x0a, 0x0c, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05,
|
2024-07-14 15:49:34 +00:00
|
|
|
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x31, 0x0a, 0x16, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x43, 0x6f,
|
|
|
|
0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
|
|
|
|
0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04,
|
|
|
|
0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x2f, 0x0a, 0x17, 0x43, 0x6f, 0x75, 0x6e,
|
|
|
|
0x74, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
|
|
0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01,
|
2024-08-23 11:08:07 +00:00
|
|
|
0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x81, 0x01, 0x0a, 0x11, 0x50, 0x75,
|
|
|
|
0x73, 0x68, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
|
|
|
|
0x1c, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04,
|
|
|
|
0x48, 0x00, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a,
|
|
|
|
0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04,
|
|
|
|
0x48, 0x01, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12,
|
|
|
|
0x12, 0x0a, 0x04, 0x62, 0x6f, 0x64, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x62,
|
|
|
|
0x6f, 0x64, 0x79, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x42,
|
|
|
|
0x0c, 0x0a, 0x0a, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x22, 0x62, 0x0a,
|
|
|
|
0x16, 0x50, 0x75, 0x73, 0x68, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x42, 0x61, 0x74, 0x63, 0x68,
|
|
|
|
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f,
|
|
|
|
0x69, 0x64, 0x18, 0x01, 0x20, 0x03, 0x28, 0x04, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
|
|
|
|
0x12, 0x1b, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20,
|
|
|
|
0x03, 0x28, 0x04, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x12, 0x0a,
|
|
|
|
0x04, 0x62, 0x6f, 0x64, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x62, 0x6f, 0x64,
|
|
|
|
0x79, 0x22, 0x84, 0x01, 0x0a, 0x12, 0x50, 0x75, 0x73, 0x68, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d,
|
|
|
|
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x24, 0x0a, 0x0e, 0x69, 0x73, 0x5f, 0x61,
|
|
|
|
0x6c, 0x6c, 0x5f, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,
|
|
|
|
0x52, 0x0c, 0x69, 0x73, 0x41, 0x6c, 0x6c, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x25,
|
|
|
|
0x0a, 0x0e, 0x61, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
|
|
|
0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x61, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64,
|
|
|
|
0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x5f,
|
|
|
|
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x66, 0x61, 0x69,
|
|
|
|
0x6c, 0x65, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x7a, 0x0a, 0x12, 0x53, 0x74, 0x72, 0x65,
|
|
|
|
0x61, 0x6d, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14,
|
|
|
|
0x0a, 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65,
|
|
|
|
0x76, 0x65, 0x6e, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18,
|
|
|
|
0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1b, 0x0a,
|
|
|
|
0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04,
|
|
|
|
0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61,
|
|
|
|
0x79, 0x6c, 0x6f, 0x61, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x70, 0x61, 0x79,
|
|
|
|
0x6c, 0x6f, 0x61, 0x64, 0x22, 0x15, 0x0a, 0x13, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x45, 0x76,
|
|
|
|
0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x32, 0xcc, 0x02, 0x0a, 0x10,
|
|
|
|
0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x6c, 0x65, 0x72,
|
|
|
|
0x12, 0x58, 0x0a, 0x15, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x43,
|
|
|
|
0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1d, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
|
|
0x6f, 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f,
|
|
|
|
0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
|
|
0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
|
|
|
|
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x0a, 0x50, 0x75,
|
|
|
|
0x73, 0x68, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x12, 0x18, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
|
|
0x2e, 0x50, 0x75, 0x73, 0x68, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
|
|
0x73, 0x74, 0x1a, 0x19, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x50, 0x75, 0x73, 0x68, 0x53,
|
|
|
|
0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
|
|
|
|
0x4d, 0x0a, 0x0f, 0x50, 0x75, 0x73, 0x68, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x42, 0x61, 0x74,
|
|
|
|
0x63, 0x68, 0x12, 0x1d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x50, 0x75, 0x73, 0x68, 0x53,
|
|
|
|
0x74, 0x72, 0x65, 0x61, 0x6d, 0x42, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
|
|
0x74, 0x1a, 0x19, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x50, 0x75, 0x73, 0x68, 0x53, 0x74,
|
|
|
|
0x72, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4a,
|
|
|
|
0x0a, 0x0f, 0x45, 0x6d, 0x69, 0x74, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x45, 0x76, 0x65, 0x6e,
|
|
|
|
0x74, 0x12, 0x19, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d,
|
|
|
|
0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x70,
|
|
|
|
0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x45, 0x76, 0x65, 0x6e, 0x74,
|
|
|
|
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x09, 0x5a, 0x07, 0x2e, 0x3b,
|
|
|
|
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
2024-07-14 15:45:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
file_stream_proto_rawDescOnce sync.Once
|
|
|
|
file_stream_proto_rawDescData = file_stream_proto_rawDesc
|
|
|
|
)
|
|
|
|
|
|
|
|
func file_stream_proto_rawDescGZIP() []byte {
|
|
|
|
file_stream_proto_rawDescOnce.Do(func() {
|
|
|
|
file_stream_proto_rawDescData = protoimpl.X.CompressGZIP(file_stream_proto_rawDescData)
|
|
|
|
})
|
|
|
|
return file_stream_proto_rawDescData
|
|
|
|
}
|
|
|
|
|
2024-07-20 11:47:04 +00:00
|
|
|
var file_stream_proto_msgTypes = make([]protoimpl.MessageInfo, 7)
|
2024-07-30 10:31:26 +00:00
|
|
|
var file_stream_proto_goTypes = []any{
|
2024-07-14 15:49:34 +00:00
|
|
|
(*CountConnectionRequest)(nil), // 0: proto.CountConnectionRequest
|
|
|
|
(*CountConnectionResponse)(nil), // 1: proto.CountConnectionResponse
|
|
|
|
(*PushStreamRequest)(nil), // 2: proto.PushStreamRequest
|
2024-07-17 03:58:51 +00:00
|
|
|
(*PushStreamBatchRequest)(nil), // 3: proto.PushStreamBatchRequest
|
|
|
|
(*PushStreamResponse)(nil), // 4: proto.PushStreamResponse
|
2024-07-20 11:47:04 +00:00
|
|
|
(*StreamEventRequest)(nil), // 5: proto.StreamEventRequest
|
|
|
|
(*StreamEventResponse)(nil), // 6: proto.StreamEventResponse
|
2024-07-14 15:45:18 +00:00
|
|
|
}
|
|
|
|
var file_stream_proto_depIdxs = []int32{
|
2024-07-14 15:49:34 +00:00
|
|
|
0, // 0: proto.StreamController.CountStreamConnection:input_type -> proto.CountConnectionRequest
|
|
|
|
2, // 1: proto.StreamController.PushStream:input_type -> proto.PushStreamRequest
|
2024-07-17 03:58:51 +00:00
|
|
|
3, // 2: proto.StreamController.PushStreamBatch:input_type -> proto.PushStreamBatchRequest
|
2024-07-20 11:47:04 +00:00
|
|
|
5, // 3: proto.StreamController.EmitStreamEvent:input_type -> proto.StreamEventRequest
|
|
|
|
1, // 4: proto.StreamController.CountStreamConnection:output_type -> proto.CountConnectionResponse
|
|
|
|
4, // 5: proto.StreamController.PushStream:output_type -> proto.PushStreamResponse
|
|
|
|
4, // 6: proto.StreamController.PushStreamBatch:output_type -> proto.PushStreamResponse
|
|
|
|
6, // 7: proto.StreamController.EmitStreamEvent:output_type -> proto.StreamEventResponse
|
|
|
|
4, // [4:8] is the sub-list for method output_type
|
|
|
|
0, // [0:4] is the sub-list for method input_type
|
2024-07-14 15:45:18 +00:00
|
|
|
0, // [0:0] is the sub-list for extension type_name
|
|
|
|
0, // [0:0] is the sub-list for extension extendee
|
|
|
|
0, // [0:0] is the sub-list for field type_name
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() { file_stream_proto_init() }
|
|
|
|
func file_stream_proto_init() {
|
|
|
|
if File_stream_proto != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if !protoimpl.UnsafeEnabled {
|
2024-07-30 10:31:26 +00:00
|
|
|
file_stream_proto_msgTypes[0].Exporter = func(v any, i int) any {
|
2024-07-14 15:49:34 +00:00
|
|
|
switch v := v.(*CountConnectionRequest); i {
|
2024-07-14 15:45:18 +00:00
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2024-07-30 10:31:26 +00:00
|
|
|
file_stream_proto_msgTypes[1].Exporter = func(v any, i int) any {
|
2024-07-14 15:49:34 +00:00
|
|
|
switch v := v.(*CountConnectionResponse); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2024-07-30 10:31:26 +00:00
|
|
|
file_stream_proto_msgTypes[2].Exporter = func(v any, i int) any {
|
2024-07-14 15:49:34 +00:00
|
|
|
switch v := v.(*PushStreamRequest); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2024-07-30 10:31:26 +00:00
|
|
|
file_stream_proto_msgTypes[3].Exporter = func(v any, i int) any {
|
2024-07-17 03:58:51 +00:00
|
|
|
switch v := v.(*PushStreamBatchRequest); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2024-07-30 10:31:26 +00:00
|
|
|
file_stream_proto_msgTypes[4].Exporter = func(v any, i int) any {
|
2024-07-14 15:45:18 +00:00
|
|
|
switch v := v.(*PushStreamResponse); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2024-07-30 10:31:26 +00:00
|
|
|
file_stream_proto_msgTypes[5].Exporter = func(v any, i int) any {
|
2024-07-20 11:47:04 +00:00
|
|
|
switch v := v.(*StreamEventRequest); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2024-07-30 10:31:26 +00:00
|
|
|
file_stream_proto_msgTypes[6].Exporter = func(v any, i int) any {
|
2024-07-20 11:47:04 +00:00
|
|
|
switch v := v.(*StreamEventResponse); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2024-07-14 15:45:18 +00:00
|
|
|
}
|
2024-08-23 11:08:07 +00:00
|
|
|
file_stream_proto_msgTypes[2].OneofWrappers = []any{}
|
2024-07-14 15:45:18 +00:00
|
|
|
type x struct{}
|
|
|
|
out := protoimpl.TypeBuilder{
|
|
|
|
File: protoimpl.DescBuilder{
|
|
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
|
|
RawDescriptor: file_stream_proto_rawDesc,
|
|
|
|
NumEnums: 0,
|
2024-07-20 11:47:04 +00:00
|
|
|
NumMessages: 7,
|
2024-07-14 15:45:18 +00:00
|
|
|
NumExtensions: 0,
|
|
|
|
NumServices: 1,
|
|
|
|
},
|
|
|
|
GoTypes: file_stream_proto_goTypes,
|
|
|
|
DependencyIndexes: file_stream_proto_depIdxs,
|
|
|
|
MessageInfos: file_stream_proto_msgTypes,
|
|
|
|
}.Build()
|
|
|
|
File_stream_proto = out.File
|
|
|
|
file_stream_proto_rawDesc = nil
|
|
|
|
file_stream_proto_goTypes = nil
|
|
|
|
file_stream_proto_depIdxs = nil
|
|
|
|
}
|