Documentation ¶
Index ¶
- Variables
- func RegisterWatcherServer(s *grpc.Server, srv WatcherServer)
- type Change
- func (*Change) Descriptor() ([]byte, []int)deprecated
- func (x *Change) GetContinued() bool
- func (x *Change) GetData() *anypb.Any
- func (x *Change) GetElement() string
- func (x *Change) GetResumeMarker() []byte
- func (x *Change) GetState() Change_State
- func (*Change) ProtoMessage()
- func (x *Change) ProtoReflect() protoreflect.Message
- func (x *Change) Reset()
- func (x *Change) String() string
- type ChangeBatch
- type Change_State
- func (Change_State) Descriptor() protoreflect.EnumDescriptor
- func (x Change_State) Enum() *Change_State
- func (Change_State) EnumDescriptor() ([]byte, []int)deprecated
- func (x Change_State) Number() protoreflect.EnumNumber
- func (x Change_State) String() string
- func (Change_State) Type() protoreflect.EnumType
- type Request
- type UnimplementedWatcherServer
- type WatcherClient
- type WatcherServer
- type Watcher_WatchClient
- type Watcher_WatchServer
Constants ¶
This section is empty.
Variables ¶
var ( Change_State_name = map[int32]string{ 0: "EXISTS", 1: "DOES_NOT_EXIST", 2: "INITIAL_STATE_SKIPPED", 3: "ERROR", } Change_State_value = map[string]int32{ "EXISTS": 0, "DOES_NOT_EXIST": 1, "INITIAL_STATE_SKIPPED": 2, "ERROR": 3, } )
Enum value maps for Change_State.
var File_google_watcher_v1_watch_proto protoreflect.FileDescriptor
Functions ¶
func RegisterWatcherServer ¶
func RegisterWatcherServer(s *grpc.Server, srv WatcherServer)
Types ¶
type Change ¶
type Change struct { // Name of the element, interpreted relative to the entity's actual // name. "" refers to the entity itself. The element name is a valid // UTF-8 string. Element string `protobuf:"bytes,1,opt,name=element,proto3" json:"element,omitempty"` // The state of the `element`. State Change_State `protobuf:"varint,2,opt,name=state,proto3,enum=google.watcher.v1.Change_State" json:"state,omitempty"` // The actual change data. This field is present only when `state() == EXISTS` // or `state() == ERROR`. Please see // [google.protobuf.Any][google.protobuf.Any] about how to use the Any type. Data *anypb.Any `protobuf:"bytes,6,opt,name=data,proto3" json:"data,omitempty"` // If present, provides a compact representation of all the messages that have // been received by the caller for the given entity, e.g., it could be a // sequence number or a multi-part timestamp/version vector. This marker can // be provided in the Request message, allowing the caller to resume the // stream watching at a specific point without fetching the initial state. ResumeMarker []byte `protobuf:"bytes,4,opt,name=resume_marker,json=resumeMarker,proto3" json:"resume_marker,omitempty"` // If true, this Change is followed by more Changes that are in the same group // as this Change. Continued bool `protobuf:"varint,5,opt,name=continued,proto3" json:"continued,omitempty"` // contains filtered or unexported fields }
A Change indicates the most recent state of an element.
func (*Change) Descriptor
deprecated
func (*Change) GetContinued ¶
func (*Change) GetElement ¶
func (*Change) GetResumeMarker ¶
func (*Change) GetState ¶
func (x *Change) GetState() Change_State
func (*Change) ProtoMessage ¶
func (*Change) ProtoMessage()
func (*Change) ProtoReflect ¶
func (x *Change) ProtoReflect() protoreflect.Message
type ChangeBatch ¶
type ChangeBatch struct { // A list of Change messages. Changes []*Change `protobuf:"bytes,1,rep,name=changes,proto3" json:"changes,omitempty"` // contains filtered or unexported fields }
A batch of Change messages.
func (*ChangeBatch) Descriptor
deprecated
func (*ChangeBatch) Descriptor() ([]byte, []int)
Deprecated: Use ChangeBatch.ProtoReflect.Descriptor instead.
func (*ChangeBatch) GetChanges ¶
func (x *ChangeBatch) GetChanges() []*Change
func (*ChangeBatch) ProtoMessage ¶
func (*ChangeBatch) ProtoMessage()
func (*ChangeBatch) ProtoReflect ¶
func (x *ChangeBatch) ProtoReflect() protoreflect.Message
func (*ChangeBatch) Reset ¶
func (x *ChangeBatch) Reset()
func (*ChangeBatch) String ¶
func (x *ChangeBatch) String() string
type Change_State ¶
type Change_State int32
A reported value can be in one of the following states:
const ( // The element exists and its full value is included in data. Change_EXISTS Change_State = 0 // The element does not exist. Change_DOES_NOT_EXIST Change_State = 1 // Element may or may not exist. Used only for initial state delivery when // the client is not interested in fetching the initial state. See the // "Initial State" section above. Change_INITIAL_STATE_SKIPPED Change_State = 2 // The element may exist, but some error has occurred. More information is // available in the data field - the value is a serialized Status // proto (from [google.rpc.Status][]) Change_ERROR Change_State = 3 )
func (Change_State) Descriptor ¶
func (Change_State) Descriptor() protoreflect.EnumDescriptor
func (Change_State) Enum ¶
func (x Change_State) Enum() *Change_State
func (Change_State) EnumDescriptor
deprecated
func (Change_State) EnumDescriptor() ([]byte, []int)
Deprecated: Use Change_State.Descriptor instead.
func (Change_State) Number ¶
func (x Change_State) Number() protoreflect.EnumNumber
func (Change_State) String ¶
func (x Change_State) String() string
func (Change_State) Type ¶
func (Change_State) Type() protoreflect.EnumType
type Request ¶
type Request struct { // The `target` value **must** be a valid URL path pointing to an entity // to watch. Note that the service name **must** be // removed from the target field (e.g., the target field must say // "/foo/bar", not "myservice.googleapis.com/foo/bar"). A client is // also allowed to pass system-specific parameters in the URL that // are only obeyed by some implementations. Some parameters will be // implementation-specific. However, some have predefined meaning // and are listed here: // // - recursive = true|false [default=false] // If set to true, indicates that the client wants to watch all elements // of entities in the subtree rooted at the entity's name in `target`. For // descendants that are not the immediate children of the target, the // `Change.element` will contain slashes. // // Note that some namespaces and entities will not support recursive // watching. When watching such an entity, a client must not set recursive // to true. Otherwise, it will receive an `UNIMPLEMENTED` error. // // Normal URL encoding must be used inside `target`. For example, if a query // parameter name or value, or the non-query parameter portion of `target` // contains a special character, it must be %-encoded. We recommend that // clients and servers use their runtime's URL library to produce and consume // target values. Target string `protobuf:"bytes,1,opt,name=target,proto3" json:"target,omitempty"` // The `resume_marker` specifies how much of the existing underlying state is // delivered to the client when the watch request is received by the // system. The client can set this marker in one of the following ways to get // different semantics: // // - Parameter is not specified or has the value "". // Semantics: Fetch initial state. // The client wants the entity's initial state to be delivered. See the // description in "Initial State". // // - Parameter is set to the string "now" (UTF-8 encoding). // Semantics: Fetch new changes only. // The client just wants to get the changes received by the system after // the watch point. The system may deliver changes from before the watch // point as well. // // - Parameter is set to a value received in an earlier // `Change.resume_marker` field while watching the same entity. // Semantics: Resume from a specific point. // The client wants to receive the changes from a specific point; this // value must correspond to a value received in the `Change.resume_marker` // field. The system may deliver changes from before the `resume_marker` // as well. If the system cannot resume the stream from this point (e.g., // if it is too far behind in the stream), it can raise the // `FAILED_PRECONDITION` error. // // An implementation MUST support an unspecified parameter and the // empty string "" marker (initial state fetching) and the "now" marker. // It need not support resuming from a specific point. ResumeMarker []byte `protobuf:"bytes,2,opt,name=resume_marker,json=resumeMarker,proto3" json:"resume_marker,omitempty"` // contains filtered or unexported fields }
The message used by the client to register interest in an entity.
func (*Request) Descriptor
deprecated
func (*Request) GetResumeMarker ¶
func (*Request) ProtoMessage ¶
func (*Request) ProtoMessage()
func (*Request) ProtoReflect ¶
func (x *Request) ProtoReflect() protoreflect.Message
type UnimplementedWatcherServer ¶
type UnimplementedWatcherServer struct { }
UnimplementedWatcherServer can be embedded to have forward compatible implementations.
func (*UnimplementedWatcherServer) Watch ¶
func (*UnimplementedWatcherServer) Watch(*Request, Watcher_WatchServer) error
type WatcherClient ¶
type WatcherClient interface { // Start a streaming RPC to get watch information from the server. Watch(ctx context.Context, in *Request, opts ...grpc.CallOption) (Watcher_WatchClient, error) }
WatcherClient is the client API for Watcher service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
func NewWatcherClient ¶
func NewWatcherClient(cc grpc.ClientConnInterface) WatcherClient
type WatcherServer ¶
type WatcherServer interface { // Start a streaming RPC to get watch information from the server. Watch(*Request, Watcher_WatchServer) error }
WatcherServer is the server API for Watcher service.
type Watcher_WatchClient ¶
type Watcher_WatchClient interface { Recv() (*ChangeBatch, error) grpc.ClientStream }
type Watcher_WatchServer ¶
type Watcher_WatchServer interface { Send(*ChangeBatch) error grpc.ServerStream }