internalpb

package
v1.3.6 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 31, 2023 License: MIT Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	NatsMessageType_name = map[int32]string{
		0: "NATS_MESSAGE_TYPE_REGISTER",
		1: "NATS_MESSAGE_TYPE_DEREGISTER",
		2: "NATS_MESSAGE_TYPE_REQUEST",
		3: "NATS_MESSAGE_TYPE_RESPONSE",
	}
	NatsMessageType_value = map[string]int32{
		"NATS_MESSAGE_TYPE_REGISTER":   0,
		"NATS_MESSAGE_TYPE_DEREGISTER": 1,
		"NATS_MESSAGE_TYPE_REQUEST":    2,
		"NATS_MESSAGE_TYPE_RESPONSE":   3,
	}
)

Enum value maps for NatsMessageType.

View Source
var File_internal_v1_nats_proto protoreflect.FileDescriptor
View Source
var File_internal_v1_remoting_proto protoreflect.FileDescriptor
View Source
var File_internal_v1_wireactor_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type NatsMessage added in v1.1.0

type NatsMessage struct {

	// Specifies the host name of the client node
	Host string `protobuf:"bytes,1,opt,name=host,proto3" json:"host,omitempty"`
	// Specifies the port of the client node
	Port int32 `protobuf:"varint,2,opt,name=port,proto3" json:"port,omitempty"`
	// Specifies the client name
	Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	// Specifies the message type
	MessageType NatsMessageType `` /* 128-byte string literal not displayed */
	// contains filtered or unexported fields
}

NatsMessage defines the NATs message used by the discovery provider

func (*NatsMessage) Descriptor deprecated added in v1.1.0

func (*NatsMessage) Descriptor() ([]byte, []int)

Deprecated: Use NatsMessage.ProtoReflect.Descriptor instead.

func (*NatsMessage) GetHost added in v1.1.0

func (x *NatsMessage) GetHost() string

func (*NatsMessage) GetMessageType added in v1.1.0

func (x *NatsMessage) GetMessageType() NatsMessageType

func (*NatsMessage) GetName added in v1.1.0

func (x *NatsMessage) GetName() string

func (*NatsMessage) GetPort added in v1.1.0

func (x *NatsMessage) GetPort() int32

func (*NatsMessage) ProtoMessage added in v1.1.0

func (*NatsMessage) ProtoMessage()

func (*NatsMessage) ProtoReflect added in v1.1.0

func (x *NatsMessage) ProtoReflect() protoreflect.Message

func (*NatsMessage) Reset added in v1.1.0

func (x *NatsMessage) Reset()

func (*NatsMessage) String added in v1.1.0

func (x *NatsMessage) String() string

type NatsMessageType added in v1.1.0

type NatsMessageType int32

NatsMessageType defines the NATs message type

const (
	NatsMessageType_NATS_MESSAGE_TYPE_REGISTER   NatsMessageType = 0
	NatsMessageType_NATS_MESSAGE_TYPE_DEREGISTER NatsMessageType = 1
	NatsMessageType_NATS_MESSAGE_TYPE_REQUEST    NatsMessageType = 2
	NatsMessageType_NATS_MESSAGE_TYPE_RESPONSE   NatsMessageType = 3
)

func (NatsMessageType) Descriptor added in v1.1.0

func (NatsMessageType) Enum added in v1.1.0

func (x NatsMessageType) Enum() *NatsMessageType

func (NatsMessageType) EnumDescriptor deprecated added in v1.1.0

func (NatsMessageType) EnumDescriptor() ([]byte, []int)

Deprecated: Use NatsMessageType.Descriptor instead.

func (NatsMessageType) Number added in v1.1.0

func (NatsMessageType) String added in v1.1.0

func (x NatsMessageType) String() string

func (NatsMessageType) Type added in v1.1.0

type RemoteAskRequest

type RemoteAskRequest struct {

	// Specifies the remote message to send
	RemoteMessage *RemoteMessage `protobuf:"bytes,1,opt,name=remote_message,json=remoteMessage,proto3" json:"remote_message,omitempty"`
	// contains filtered or unexported fields
}

RemoteAsk is used to send a message to an actor remotely and expect a response immediately.

func (*RemoteAskRequest) Descriptor deprecated

func (*RemoteAskRequest) Descriptor() ([]byte, []int)

Deprecated: Use RemoteAskRequest.ProtoReflect.Descriptor instead.

func (*RemoteAskRequest) GetRemoteMessage

func (x *RemoteAskRequest) GetRemoteMessage() *RemoteMessage

func (*RemoteAskRequest) ProtoMessage

func (*RemoteAskRequest) ProtoMessage()

func (*RemoteAskRequest) ProtoReflect

func (x *RemoteAskRequest) ProtoReflect() protoreflect.Message

func (*RemoteAskRequest) Reset

func (x *RemoteAskRequest) Reset()

func (*RemoteAskRequest) String

func (x *RemoteAskRequest) String() string

type RemoteAskResponse

type RemoteAskResponse struct {

	// Specifies the message to send to the actor
	// Any proto message is allowed to be sent
	Message *anypb.Any `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*RemoteAskResponse) Descriptor deprecated

func (*RemoteAskResponse) Descriptor() ([]byte, []int)

Deprecated: Use RemoteAskResponse.ProtoReflect.Descriptor instead.

func (*RemoteAskResponse) GetMessage

func (x *RemoteAskResponse) GetMessage() *anypb.Any

func (*RemoteAskResponse) ProtoMessage

func (*RemoteAskResponse) ProtoMessage()

func (*RemoteAskResponse) ProtoReflect

func (x *RemoteAskResponse) ProtoReflect() protoreflect.Message

func (*RemoteAskResponse) Reset

func (x *RemoteAskResponse) Reset()

func (*RemoteAskResponse) String

func (x *RemoteAskResponse) String() string

type RemoteBatchAskRequest added in v1.3.4

type RemoteBatchAskRequest struct {

	// Specifies the remote message to send
	Messages []*anypb.Any `protobuf:"bytes,1,rep,name=messages,proto3" json:"messages,omitempty"`
	// Specifies the sender' address
	Sender *v1.Address `protobuf:"bytes,2,opt,name=sender,proto3" json:"sender,omitempty"`
	// Specifies the actor address
	Receiver *v1.Address `protobuf:"bytes,3,opt,name=receiver,proto3" json:"receiver,omitempty"`
	// contains filtered or unexported fields
}

func (*RemoteBatchAskRequest) Descriptor deprecated added in v1.3.4

func (*RemoteBatchAskRequest) Descriptor() ([]byte, []int)

Deprecated: Use RemoteBatchAskRequest.ProtoReflect.Descriptor instead.

func (*RemoteBatchAskRequest) GetMessages added in v1.3.4

func (x *RemoteBatchAskRequest) GetMessages() []*anypb.Any

func (*RemoteBatchAskRequest) GetReceiver added in v1.3.4

func (x *RemoteBatchAskRequest) GetReceiver() *v1.Address

func (*RemoteBatchAskRequest) GetSender added in v1.3.4

func (x *RemoteBatchAskRequest) GetSender() *v1.Address

func (*RemoteBatchAskRequest) ProtoMessage added in v1.3.4

func (*RemoteBatchAskRequest) ProtoMessage()

func (*RemoteBatchAskRequest) ProtoReflect added in v1.3.4

func (x *RemoteBatchAskRequest) ProtoReflect() protoreflect.Message

func (*RemoteBatchAskRequest) Reset added in v1.3.4

func (x *RemoteBatchAskRequest) Reset()

func (*RemoteBatchAskRequest) String added in v1.3.4

func (x *RemoteBatchAskRequest) String() string

type RemoteBatchAskResponse added in v1.3.4

type RemoteBatchAskResponse struct {

	// Specifies the message to send to the actor
	// Any proto message is allowed to be sent
	Messages []*anypb.Any `protobuf:"bytes,1,rep,name=messages,proto3" json:"messages,omitempty"`
	// contains filtered or unexported fields
}

func (*RemoteBatchAskResponse) Descriptor deprecated added in v1.3.4

func (*RemoteBatchAskResponse) Descriptor() ([]byte, []int)

Deprecated: Use RemoteBatchAskResponse.ProtoReflect.Descriptor instead.

func (*RemoteBatchAskResponse) GetMessages added in v1.3.4

func (x *RemoteBatchAskResponse) GetMessages() []*anypb.Any

func (*RemoteBatchAskResponse) ProtoMessage added in v1.3.4

func (*RemoteBatchAskResponse) ProtoMessage()

func (*RemoteBatchAskResponse) ProtoReflect added in v1.3.4

func (x *RemoteBatchAskResponse) ProtoReflect() protoreflect.Message

func (*RemoteBatchAskResponse) Reset added in v1.3.4

func (x *RemoteBatchAskResponse) Reset()

func (*RemoteBatchAskResponse) String added in v1.3.4

func (x *RemoteBatchAskResponse) String() string

type RemoteBatchTellRequest added in v1.3.4

type RemoteBatchTellRequest struct {

	// Specifies the remote message to send
	Messages []*anypb.Any `protobuf:"bytes,1,rep,name=messages,proto3" json:"messages,omitempty"`
	// Specifies the sender' address
	Sender *v1.Address `protobuf:"bytes,2,opt,name=sender,proto3" json:"sender,omitempty"`
	// Specifies the actor address
	Receiver *v1.Address `protobuf:"bytes,3,opt,name=receiver,proto3" json:"receiver,omitempty"`
	// contains filtered or unexported fields
}

func (*RemoteBatchTellRequest) Descriptor deprecated added in v1.3.4

func (*RemoteBatchTellRequest) Descriptor() ([]byte, []int)

Deprecated: Use RemoteBatchTellRequest.ProtoReflect.Descriptor instead.

func (*RemoteBatchTellRequest) GetMessages added in v1.3.4

func (x *RemoteBatchTellRequest) GetMessages() []*anypb.Any

func (*RemoteBatchTellRequest) GetReceiver added in v1.3.4

func (x *RemoteBatchTellRequest) GetReceiver() *v1.Address

func (*RemoteBatchTellRequest) GetSender added in v1.3.4

func (x *RemoteBatchTellRequest) GetSender() *v1.Address

func (*RemoteBatchTellRequest) ProtoMessage added in v1.3.4

func (*RemoteBatchTellRequest) ProtoMessage()

func (*RemoteBatchTellRequest) ProtoReflect added in v1.3.4

func (x *RemoteBatchTellRequest) ProtoReflect() protoreflect.Message

func (*RemoteBatchTellRequest) Reset added in v1.3.4

func (x *RemoteBatchTellRequest) Reset()

func (*RemoteBatchTellRequest) String added in v1.3.4

func (x *RemoteBatchTellRequest) String() string

type RemoteBatchTellResponse added in v1.3.4

type RemoteBatchTellResponse struct {
	// contains filtered or unexported fields
}

func (*RemoteBatchTellResponse) Descriptor deprecated added in v1.3.4

func (*RemoteBatchTellResponse) Descriptor() ([]byte, []int)

Deprecated: Use RemoteBatchTellResponse.ProtoReflect.Descriptor instead.

func (*RemoteBatchTellResponse) ProtoMessage added in v1.3.4

func (*RemoteBatchTellResponse) ProtoMessage()

func (*RemoteBatchTellResponse) ProtoReflect added in v1.3.4

func (x *RemoteBatchTellResponse) ProtoReflect() protoreflect.Message

func (*RemoteBatchTellResponse) Reset added in v1.3.4

func (x *RemoteBatchTellResponse) Reset()

func (*RemoteBatchTellResponse) String added in v1.3.4

func (x *RemoteBatchTellResponse) String() string

type RemoteLookupRequest

type RemoteLookupRequest struct {

	// Specifies the remote host address
	Host string `protobuf:"bytes,1,opt,name=host,proto3" json:"host,omitempty"`
	// Specifies the remote port
	Port int32 `protobuf:"varint,2,opt,name=port,proto3" json:"port,omitempty"`
	// Specifies the actor name
	Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

RemoteLookupRequest checks whether a given actor exists on a remote host

func (*RemoteLookupRequest) Descriptor deprecated

func (*RemoteLookupRequest) Descriptor() ([]byte, []int)

Deprecated: Use RemoteLookupRequest.ProtoReflect.Descriptor instead.

func (*RemoteLookupRequest) GetHost

func (x *RemoteLookupRequest) GetHost() string

func (*RemoteLookupRequest) GetName

func (x *RemoteLookupRequest) GetName() string

func (*RemoteLookupRequest) GetPort

func (x *RemoteLookupRequest) GetPort() int32

func (*RemoteLookupRequest) ProtoMessage

func (*RemoteLookupRequest) ProtoMessage()

func (*RemoteLookupRequest) ProtoReflect

func (x *RemoteLookupRequest) ProtoReflect() protoreflect.Message

func (*RemoteLookupRequest) Reset

func (x *RemoteLookupRequest) Reset()

func (*RemoteLookupRequest) String

func (x *RemoteLookupRequest) String() string

type RemoteLookupResponse

type RemoteLookupResponse struct {

	// Specifies the actor address
	Address *v1.Address `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	// contains filtered or unexported fields
}

func (*RemoteLookupResponse) Descriptor deprecated

func (*RemoteLookupResponse) Descriptor() ([]byte, []int)

Deprecated: Use RemoteLookupResponse.ProtoReflect.Descriptor instead.

func (*RemoteLookupResponse) GetAddress

func (x *RemoteLookupResponse) GetAddress() *v1.Address

func (*RemoteLookupResponse) ProtoMessage

func (*RemoteLookupResponse) ProtoMessage()

func (*RemoteLookupResponse) ProtoReflect

func (x *RemoteLookupResponse) ProtoReflect() protoreflect.Message

func (*RemoteLookupResponse) Reset

func (x *RemoteLookupResponse) Reset()

func (*RemoteLookupResponse) String

func (x *RemoteLookupResponse) String() string

type RemoteMessage

type RemoteMessage struct {

	// Specifies the sender' address
	Sender *v1.Address `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
	// Specifies the actor address
	Receiver *v1.Address `protobuf:"bytes,2,opt,name=receiver,proto3" json:"receiver,omitempty"`
	// Specifies the message to send to the actor
	// Any proto message is allowed to be sent
	Message *anypb.Any `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

RemoteMessage will be used by Actors to communicate remotely

func (*RemoteMessage) Descriptor deprecated

func (*RemoteMessage) Descriptor() ([]byte, []int)

Deprecated: Use RemoteMessage.ProtoReflect.Descriptor instead.

func (*RemoteMessage) GetMessage

func (x *RemoteMessage) GetMessage() *anypb.Any

func (*RemoteMessage) GetReceiver

func (x *RemoteMessage) GetReceiver() *v1.Address

func (*RemoteMessage) GetSender

func (x *RemoteMessage) GetSender() *v1.Address

func (*RemoteMessage) ProtoMessage

func (*RemoteMessage) ProtoMessage()

func (*RemoteMessage) ProtoReflect

func (x *RemoteMessage) ProtoReflect() protoreflect.Message

func (*RemoteMessage) Reset

func (x *RemoteMessage) Reset()

func (*RemoteMessage) String

func (x *RemoteMessage) String() string

type RemoteTellRequest

type RemoteTellRequest struct {

	// Specifies the remote message to send
	RemoteMessage *RemoteMessage `protobuf:"bytes,1,opt,name=remote_message,json=remoteMessage,proto3" json:"remote_message,omitempty"`
	// contains filtered or unexported fields
}

RemoteTell is used to send a message to an actor remotely

func (*RemoteTellRequest) Descriptor deprecated

func (*RemoteTellRequest) Descriptor() ([]byte, []int)

Deprecated: Use RemoteTellRequest.ProtoReflect.Descriptor instead.

func (*RemoteTellRequest) GetRemoteMessage

func (x *RemoteTellRequest) GetRemoteMessage() *RemoteMessage

func (*RemoteTellRequest) ProtoMessage

func (*RemoteTellRequest) ProtoMessage()

func (*RemoteTellRequest) ProtoReflect

func (x *RemoteTellRequest) ProtoReflect() protoreflect.Message

func (*RemoteTellRequest) Reset

func (x *RemoteTellRequest) Reset()

func (*RemoteTellRequest) String

func (x *RemoteTellRequest) String() string

type RemoteTellResponse

type RemoteTellResponse struct {
	// contains filtered or unexported fields
}

func (*RemoteTellResponse) Descriptor deprecated

func (*RemoteTellResponse) Descriptor() ([]byte, []int)

Deprecated: Use RemoteTellResponse.ProtoReflect.Descriptor instead.

func (*RemoteTellResponse) ProtoMessage

func (*RemoteTellResponse) ProtoMessage()

func (*RemoteTellResponse) ProtoReflect

func (x *RemoteTellResponse) ProtoReflect() protoreflect.Message

func (*RemoteTellResponse) Reset

func (x *RemoteTellResponse) Reset()

func (*RemoteTellResponse) String

func (x *RemoteTellResponse) String() string

type WireActor

type WireActor struct {

	// Specifies the actor name.
	// The actor name can be either the actor FQN or an alias
	ActorName string `protobuf:"bytes,1,opt,name=actor_name,json=actorName,proto3" json:"actor_name,omitempty"`
	// Specifies the actor address
	ActorAddress *v1.Address `protobuf:"bytes,2,opt,name=actor_address,json=actorAddress,proto3" json:"actor_address,omitempty"`
	// Specifies the actor full path
	ActorPath string `protobuf:"bytes,3,opt,name=actor_path,json=actorPath,proto3" json:"actor_path,omitempty"`
	// contains filtered or unexported fields
}

WireActor represents the actor information on the wire.

func (*WireActor) Descriptor deprecated

func (*WireActor) Descriptor() ([]byte, []int)

Deprecated: Use WireActor.ProtoReflect.Descriptor instead.

func (*WireActor) GetActorAddress

func (x *WireActor) GetActorAddress() *v1.Address

func (*WireActor) GetActorName

func (x *WireActor) GetActorName() string

func (*WireActor) GetActorPath

func (x *WireActor) GetActorPath() string

func (*WireActor) ProtoMessage

func (*WireActor) ProtoMessage()

func (*WireActor) ProtoReflect

func (x *WireActor) ProtoReflect() protoreflect.Message

func (*WireActor) Reset

func (x *WireActor) Reset()

func (*WireActor) String

func (x *WireActor) String() string

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL