proto

package
v2.0.0-...-50fc115 Latest Latest
Warning

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

Go to latest
Published: Feb 11, 2022 License: MIT Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	FileAction_name = map[int32]string{
		0: "FILE_ACTION_UNKNOWN",
		1: "FILE_ACTION_CREATE",
		2: "FILE_ACTION_WRITE",
		3: "FILE_ACTION_REMOVE",
		4: "FILE_ACTION_RENAME",
		5: "FILE_ACTION_CHMOD",
	}
	FileAction_value = map[string]int32{
		"FILE_ACTION_UNKNOWN": 0,
		"FILE_ACTION_CREATE":  1,
		"FILE_ACTION_WRITE":   2,
		"FILE_ACTION_REMOVE":  3,
		"FILE_ACTION_RENAME":  4,
		"FILE_ACTION_CHMOD":   5,
	}
)

Enum value maps for FileAction.

View Source
var (
	ProcessAction_name = map[int32]string{
		0: "PROCESS_ACTION_UNKNOWN",
		1: "PROCESS_ACTION_STARTED",
		2: "PROCESS_ACTION_STOPPED",
	}
	ProcessAction_value = map[string]int32{
		"PROCESS_ACTION_UNKNOWN": 0,
		"PROCESS_ACTION_STARTED": 1,
		"PROCESS_ACTION_STOPPED": 2,
	}
)

Enum value maps for ProcessAction.

View Source
var (
	WhisperListElement_Style_name = map[int32]string{
		0: "STYLE_NONE",
		1: "STYLE_SUCCESS",
		2: "STYLE_WARN",
		3: "STYLE_ERROR",
	}
	WhisperListElement_Style_value = map[string]int32{
		"STYLE_NONE":    0,
		"STYLE_SUCCESS": 1,
		"STYLE_WARN":    2,
		"STYLE_ERROR":   3,
	}
)

Enum value maps for WhisperListElement_Style.

View Source
var (
	WhisperListElement_Align_name = map[int32]string{
		0: "ALIGN_LEFT",
		1: "ALIGN_CENTER",
		2: "ALIGN_RIGHT",
	}
	WhisperListElement_Align_value = map[string]int32{
		"ALIGN_LEFT":   0,
		"ALIGN_CENTER": 1,
		"ALIGN_RIGHT":  2,
	}
)

Enum value maps for WhisperListElement_Align.

View Source
var (
	WindowAction_name = map[int32]string{
		0: "WINDOW_ACTION_UNKNOWN",
		1: "WINDOW_ACTION_FOCUSED",
		2: "WINDOW_ACTION_UNFOCUSED",
		3: "WINDOW_ACTION_OPENED",
		4: "WINDOW_ACTION_CLOSED",
		5: "WINDOW_ACTION_MOVED",
		6: "WINDOW_ACTION_RESIZED",
		7: "WINDOW_ACTION_TITLE_CHANGED",
	}
	WindowAction_value = map[string]int32{
		"WINDOW_ACTION_UNKNOWN":       0,
		"WINDOW_ACTION_FOCUSED":       1,
		"WINDOW_ACTION_UNFOCUSED":     2,
		"WINDOW_ACTION_OPENED":        3,
		"WINDOW_ACTION_CLOSED":        4,
		"WINDOW_ACTION_MOVED":         5,
		"WINDOW_ACTION_RESIZED":       6,
		"WINDOW_ACTION_TITLE_CHANGED": 7,
	}
)

Enum value maps for WindowAction.

View Source
var File_browser_proto protoreflect.FileDescriptor
View Source
var File_clipboard_proto protoreflect.FileDescriptor
View Source
var File_cursor_proto protoreflect.FileDescriptor
View Source
var File_filesystem_proto protoreflect.FileDescriptor
View Source
var File_hover_proto protoreflect.FileDescriptor
View Source
var File_keyboard_proto protoreflect.FileDescriptor
View Source
var File_network_proto protoreflect.FileDescriptor
View Source
var File_process_proto protoreflect.FileDescriptor
View Source
var File_session_proto protoreflect.FileDescriptor
View Source
var File_vault_proto protoreflect.FileDescriptor
View Source
var File_whisper_proto protoreflect.FileDescriptor
View Source
var File_window_proto protoreflect.FileDescriptor

Functions

func RegisterBrowserServer

func RegisterBrowserServer(s *grpc.Server, srv BrowserServer)

func RegisterClipboardServer

func RegisterClipboardServer(s *grpc.Server, srv ClipboardServer)

func RegisterCursorServer

func RegisterCursorServer(s *grpc.Server, srv CursorServer)

func RegisterFilesystemServer

func RegisterFilesystemServer(s *grpc.Server, srv FilesystemServer)

func RegisterHoverServer

func RegisterHoverServer(s *grpc.Server, srv HoverServer)

func RegisterKeyboardServer

func RegisterKeyboardServer(s *grpc.Server, srv KeyboardServer)

func RegisterLoopServer

func RegisterLoopServer(s *grpc.Server, srv LoopServer)

func RegisterNetworkServer

func RegisterNetworkServer(s *grpc.Server, srv NetworkServer)

func RegisterProcessServer

func RegisterProcessServer(s *grpc.Server, srv ProcessServer)

func RegisterUIServer

func RegisterUIServer(s *grpc.Server, srv UIServer)

func RegisterVaultServer

func RegisterVaultServer(s *grpc.Server, srv VaultServer)

func RegisterWhisperServer

func RegisterWhisperServer(s *grpc.Server, srv WhisperServer)

func RegisterWindowServer

func RegisterWindowServer(s *grpc.Server, srv WindowServer)

Types

type BrowserActiveURLRequest

type BrowserActiveURLRequest struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	// contains filtered or unexported fields
}

func (*BrowserActiveURLRequest) Descriptor deprecated

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

Deprecated: Use BrowserActiveURLRequest.ProtoReflect.Descriptor instead.

func (*BrowserActiveURLRequest) GetSession

func (x *BrowserActiveURLRequest) GetSession() *Session

func (*BrowserActiveURLRequest) ProtoMessage

func (*BrowserActiveURLRequest) ProtoMessage()

func (*BrowserActiveURLRequest) ProtoReflect

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

func (*BrowserActiveURLRequest) Reset

func (x *BrowserActiveURLRequest) Reset()

func (*BrowserActiveURLRequest) String

func (x *BrowserActiveURLRequest) String() string

type BrowserActiveURLResponse

type BrowserActiveURLResponse struct {
	Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
	// contains filtered or unexported fields
}

func (*BrowserActiveURLResponse) Descriptor deprecated

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

Deprecated: Use BrowserActiveURLResponse.ProtoReflect.Descriptor instead.

func (*BrowserActiveURLResponse) GetUrl

func (x *BrowserActiveURLResponse) GetUrl() string

func (*BrowserActiveURLResponse) ProtoMessage

func (*BrowserActiveURLResponse) ProtoMessage()

func (*BrowserActiveURLResponse) ProtoReflect

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

func (*BrowserActiveURLResponse) Reset

func (x *BrowserActiveURLResponse) Reset()

func (*BrowserActiveURLResponse) String

func (x *BrowserActiveURLResponse) String() string

type BrowserActiveURLStreamRequest

type BrowserActiveURLStreamRequest struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	// contains filtered or unexported fields
}

func (*BrowserActiveURLStreamRequest) Descriptor deprecated

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

Deprecated: Use BrowserActiveURLStreamRequest.ProtoReflect.Descriptor instead.

func (*BrowserActiveURLStreamRequest) GetSession

func (x *BrowserActiveURLStreamRequest) GetSession() *Session

func (*BrowserActiveURLStreamRequest) ProtoMessage

func (*BrowserActiveURLStreamRequest) ProtoMessage()

func (*BrowserActiveURLStreamRequest) ProtoReflect

func (*BrowserActiveURLStreamRequest) Reset

func (x *BrowserActiveURLStreamRequest) Reset()

func (*BrowserActiveURLStreamRequest) String

type BrowserActiveURLStreamResponse

type BrowserActiveURLStreamResponse struct {
	Url   string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
	Error string `protobuf:"bytes,15,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*BrowserActiveURLStreamResponse) Descriptor deprecated

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

Deprecated: Use BrowserActiveURLStreamResponse.ProtoReflect.Descriptor instead.

func (*BrowserActiveURLStreamResponse) GetError

func (x *BrowserActiveURLStreamResponse) GetError() string

func (*BrowserActiveURLStreamResponse) GetUrl

func (*BrowserActiveURLStreamResponse) ProtoMessage

func (*BrowserActiveURLStreamResponse) ProtoMessage()

func (*BrowserActiveURLStreamResponse) ProtoReflect

func (*BrowserActiveURLStreamResponse) Reset

func (x *BrowserActiveURLStreamResponse) Reset()

func (*BrowserActiveURLStreamResponse) String

type BrowserClient

type BrowserClient interface {
	// get the active URL
	BrowserActiveURL(ctx context.Context, in *BrowserActiveURLRequest, opts ...grpc.CallOption) (*BrowserActiveURLResponse, error)
	// stream active URL every time it changes
	BrowserActiveURLStream(ctx context.Context, in *BrowserActiveURLStreamRequest, opts ...grpc.CallOption) (Browser_BrowserActiveURLStreamClient, error)
	// get currently selected text
	BrowserSelectedText(ctx context.Context, in *BrowserSelectedTextRequest, opts ...grpc.CallOption) (*BrowserSelectedTextResponse, error)
	// stream selected text every time it changes
	BrowserSelectedTextStream(ctx context.Context, in *BrowserSelectedTextStreamRequest, opts ...grpc.CallOption) (Browser_BrowserSelectedTextStreamClient, error)
}

BrowserClient is the client API for Browser service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewBrowserClient

func NewBrowserClient(cc grpc.ClientConnInterface) BrowserClient

type BrowserSelectedTextRequest

type BrowserSelectedTextRequest struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	// contains filtered or unexported fields
}

func (*BrowserSelectedTextRequest) Descriptor deprecated

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

Deprecated: Use BrowserSelectedTextRequest.ProtoReflect.Descriptor instead.

func (*BrowserSelectedTextRequest) GetSession

func (x *BrowserSelectedTextRequest) GetSession() *Session

func (*BrowserSelectedTextRequest) ProtoMessage

func (*BrowserSelectedTextRequest) ProtoMessage()

func (*BrowserSelectedTextRequest) ProtoReflect

func (*BrowserSelectedTextRequest) Reset

func (x *BrowserSelectedTextRequest) Reset()

func (*BrowserSelectedTextRequest) String

func (x *BrowserSelectedTextRequest) String() string

type BrowserSelectedTextResponse

type BrowserSelectedTextResponse struct {
	Text     string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	Url      string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
	TabTitle string `protobuf:"bytes,3,opt,name=tabTitle,proto3" json:"tabTitle,omitempty"`
	// contains filtered or unexported fields
}

func (*BrowserSelectedTextResponse) Descriptor deprecated

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

Deprecated: Use BrowserSelectedTextResponse.ProtoReflect.Descriptor instead.

func (*BrowserSelectedTextResponse) GetTabTitle

func (x *BrowserSelectedTextResponse) GetTabTitle() string

func (*BrowserSelectedTextResponse) GetText

func (x *BrowserSelectedTextResponse) GetText() string

func (*BrowserSelectedTextResponse) GetUrl

func (x *BrowserSelectedTextResponse) GetUrl() string

func (*BrowserSelectedTextResponse) ProtoMessage

func (*BrowserSelectedTextResponse) ProtoMessage()

func (*BrowserSelectedTextResponse) ProtoReflect

func (*BrowserSelectedTextResponse) Reset

func (x *BrowserSelectedTextResponse) Reset()

func (*BrowserSelectedTextResponse) String

func (x *BrowserSelectedTextResponse) String() string

type BrowserSelectedTextStreamRequest

type BrowserSelectedTextStreamRequest struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	// contains filtered or unexported fields
}

func (*BrowserSelectedTextStreamRequest) Descriptor deprecated

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

Deprecated: Use BrowserSelectedTextStreamRequest.ProtoReflect.Descriptor instead.

func (*BrowserSelectedTextStreamRequest) GetSession

func (x *BrowserSelectedTextStreamRequest) GetSession() *Session

func (*BrowserSelectedTextStreamRequest) ProtoMessage

func (*BrowserSelectedTextStreamRequest) ProtoMessage()

func (*BrowserSelectedTextStreamRequest) ProtoReflect

func (*BrowserSelectedTextStreamRequest) Reset

func (*BrowserSelectedTextStreamRequest) String

type BrowserSelectedTextStreamResponse

type BrowserSelectedTextStreamResponse struct {
	Text     string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	Url      string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
	TabTitle string `protobuf:"bytes,3,opt,name=tabTitle,proto3" json:"tabTitle,omitempty"`
	Error    string `protobuf:"bytes,15,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*BrowserSelectedTextStreamResponse) Descriptor deprecated

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

Deprecated: Use BrowserSelectedTextStreamResponse.ProtoReflect.Descriptor instead.

func (*BrowserSelectedTextStreamResponse) GetError

func (*BrowserSelectedTextStreamResponse) GetTabTitle

func (x *BrowserSelectedTextStreamResponse) GetTabTitle() string

func (*BrowserSelectedTextStreamResponse) GetText

func (*BrowserSelectedTextStreamResponse) GetUrl

func (*BrowserSelectedTextStreamResponse) ProtoMessage

func (*BrowserSelectedTextStreamResponse) ProtoMessage()

func (*BrowserSelectedTextStreamResponse) ProtoReflect

func (*BrowserSelectedTextStreamResponse) Reset

func (*BrowserSelectedTextStreamResponse) String

type BrowserServer

type BrowserServer interface {
	// get the active URL
	BrowserActiveURL(context.Context, *BrowserActiveURLRequest) (*BrowserActiveURLResponse, error)
	// stream active URL every time it changes
	BrowserActiveURLStream(*BrowserActiveURLStreamRequest, Browser_BrowserActiveURLStreamServer) error
	// get currently selected text
	BrowserSelectedText(context.Context, *BrowserSelectedTextRequest) (*BrowserSelectedTextResponse, error)
	// stream selected text every time it changes
	BrowserSelectedTextStream(*BrowserSelectedTextStreamRequest, Browser_BrowserSelectedTextStreamServer) error
}

BrowserServer is the server API for Browser service.

type Browser_BrowserActiveURLStreamClient

type Browser_BrowserActiveURLStreamClient interface {
	Recv() (*BrowserActiveURLStreamResponse, error)
	grpc.ClientStream
}

type Browser_BrowserActiveURLStreamServer

type Browser_BrowserActiveURLStreamServer interface {
	Send(*BrowserActiveURLStreamResponse) error
	grpc.ServerStream
}

type Browser_BrowserSelectedTextStreamClient

type Browser_BrowserSelectedTextStreamClient interface {
	Recv() (*BrowserSelectedTextStreamResponse, error)
	grpc.ClientStream
}

type Browser_BrowserSelectedTextStreamServer

type Browser_BrowserSelectedTextStreamServer interface {
	Send(*BrowserSelectedTextStreamResponse) error
	grpc.ServerStream
}

type ClipboardClient

type ClipboardClient interface {
	// get the contents of the clipboard
	ClipboardRead(ctx context.Context, in *ClipboardReadRequest, opts ...grpc.CallOption) (*ClipboardReadResponse, error)
	// get the contents of the clipboard every time they change
	ClipboardReadStream(ctx context.Context, in *ClipboardReadStreamRequest, opts ...grpc.CallOption) (Clipboard_ClipboardReadStreamClient, error)
	// write to the clipboard
	ClipboardWrite(ctx context.Context, in *ClipboardWriteRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
}

ClipboardClient is the client API for Clipboard service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewClipboardClient

func NewClipboardClient(cc grpc.ClientConnInterface) ClipboardClient

type ClipboardReadRequest

type ClipboardReadRequest struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	// contains filtered or unexported fields
}

func (*ClipboardReadRequest) Descriptor deprecated

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

Deprecated: Use ClipboardReadRequest.ProtoReflect.Descriptor instead.

func (*ClipboardReadRequest) GetSession

func (x *ClipboardReadRequest) GetSession() *Session

func (*ClipboardReadRequest) ProtoMessage

func (*ClipboardReadRequest) ProtoMessage()

func (*ClipboardReadRequest) ProtoReflect

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

func (*ClipboardReadRequest) Reset

func (x *ClipboardReadRequest) Reset()

func (*ClipboardReadRequest) String

func (x *ClipboardReadRequest) String() string

type ClipboardReadResponse

type ClipboardReadResponse struct {
	Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	// contains filtered or unexported fields
}

func (*ClipboardReadResponse) Descriptor deprecated

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

Deprecated: Use ClipboardReadResponse.ProtoReflect.Descriptor instead.

func (*ClipboardReadResponse) GetText

func (x *ClipboardReadResponse) GetText() string

func (*ClipboardReadResponse) ProtoMessage

func (*ClipboardReadResponse) ProtoMessage()

func (*ClipboardReadResponse) ProtoReflect

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

func (*ClipboardReadResponse) Reset

func (x *ClipboardReadResponse) Reset()

func (*ClipboardReadResponse) String

func (x *ClipboardReadResponse) String() string

type ClipboardReadStreamRequest

type ClipboardReadStreamRequest struct {
	Session                 *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	IncludeOliveHelpTraffic bool     `protobuf:"varint,2,opt,name=IncludeOliveHelpTraffic,proto3" json:"IncludeOliveHelpTraffic,omitempty"`
	// contains filtered or unexported fields
}

func (*ClipboardReadStreamRequest) Descriptor deprecated

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

Deprecated: Use ClipboardReadStreamRequest.ProtoReflect.Descriptor instead.

func (*ClipboardReadStreamRequest) GetIncludeOliveHelpTraffic

func (x *ClipboardReadStreamRequest) GetIncludeOliveHelpTraffic() bool

func (*ClipboardReadStreamRequest) GetSession

func (x *ClipboardReadStreamRequest) GetSession() *Session

func (*ClipboardReadStreamRequest) ProtoMessage

func (*ClipboardReadStreamRequest) ProtoMessage()

func (*ClipboardReadStreamRequest) ProtoReflect

func (*ClipboardReadStreamRequest) Reset

func (x *ClipboardReadStreamRequest) Reset()

func (*ClipboardReadStreamRequest) String

func (x *ClipboardReadStreamRequest) String() string

type ClipboardReadStreamResponse

type ClipboardReadStreamResponse struct {
	Text  string `protobuf:"bytes,2,opt,name=text,proto3" json:"text,omitempty"`
	Error string `protobuf:"bytes,15,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*ClipboardReadStreamResponse) Descriptor deprecated

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

Deprecated: Use ClipboardReadStreamResponse.ProtoReflect.Descriptor instead.

func (*ClipboardReadStreamResponse) GetError

func (x *ClipboardReadStreamResponse) GetError() string

func (*ClipboardReadStreamResponse) GetText

func (x *ClipboardReadStreamResponse) GetText() string

func (*ClipboardReadStreamResponse) ProtoMessage

func (*ClipboardReadStreamResponse) ProtoMessage()

func (*ClipboardReadStreamResponse) ProtoReflect

func (*ClipboardReadStreamResponse) Reset

func (x *ClipboardReadStreamResponse) Reset()

func (*ClipboardReadStreamResponse) String

func (x *ClipboardReadStreamResponse) String() string

type ClipboardServer

type ClipboardServer interface {
	// get the contents of the clipboard
	ClipboardRead(context.Context, *ClipboardReadRequest) (*ClipboardReadResponse, error)
	// get the contents of the clipboard every time they change
	ClipboardReadStream(*ClipboardReadStreamRequest, Clipboard_ClipboardReadStreamServer) error
	// write to the clipboard
	ClipboardWrite(context.Context, *ClipboardWriteRequest) (*emptypb.Empty, error)
}

ClipboardServer is the server API for Clipboard service.

type ClipboardWriteRequest

type ClipboardWriteRequest struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	Text    string   `protobuf:"bytes,2,opt,name=text,proto3" json:"text,omitempty"`
	// contains filtered or unexported fields
}

func (*ClipboardWriteRequest) Descriptor deprecated

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

Deprecated: Use ClipboardWriteRequest.ProtoReflect.Descriptor instead.

func (*ClipboardWriteRequest) GetSession

func (x *ClipboardWriteRequest) GetSession() *Session

func (*ClipboardWriteRequest) GetText

func (x *ClipboardWriteRequest) GetText() string

func (*ClipboardWriteRequest) ProtoMessage

func (*ClipboardWriteRequest) ProtoMessage()

func (*ClipboardWriteRequest) ProtoReflect

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

func (*ClipboardWriteRequest) Reset

func (x *ClipboardWriteRequest) Reset()

func (*ClipboardWriteRequest) String

func (x *ClipboardWriteRequest) String() string

type Clipboard_ClipboardReadStreamClient

type Clipboard_ClipboardReadStreamClient interface {
	Recv() (*ClipboardReadStreamResponse, error)
	grpc.ClientStream
}

type Clipboard_ClipboardReadStreamServer

type Clipboard_ClipboardReadStreamServer interface {
	Send(*ClipboardReadStreamResponse) error
	grpc.ServerStream
}

type CursorClient

type CursorClient interface {
	// get the current position of the cursor
	CursorPosition(ctx context.Context, in *CursorPositionRequest, opts ...grpc.CallOption) (*CursorPositionResponse, error)
	// get the position of the cursor every time it changes
	CursorPositionStream(ctx context.Context, in *CursorPositionStreamRequest, opts ...grpc.CallOption) (Cursor_CursorPositionStreamClient, error)
}

CursorClient is the client API for Cursor service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewCursorClient

func NewCursorClient(cc grpc.ClientConnInterface) CursorClient

type CursorPositionRequest

type CursorPositionRequest struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	// contains filtered or unexported fields
}

func (*CursorPositionRequest) Descriptor deprecated

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

Deprecated: Use CursorPositionRequest.ProtoReflect.Descriptor instead.

func (*CursorPositionRequest) GetSession

func (x *CursorPositionRequest) GetSession() *Session

func (*CursorPositionRequest) ProtoMessage

func (*CursorPositionRequest) ProtoMessage()

func (*CursorPositionRequest) ProtoReflect

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

func (*CursorPositionRequest) Reset

func (x *CursorPositionRequest) Reset()

func (*CursorPositionRequest) String

func (x *CursorPositionRequest) String() string

type CursorPositionResponse

type CursorPositionResponse struct {
	X int32 `protobuf:"varint,1,opt,name=x,proto3" json:"x,omitempty"`
	Y int32 `protobuf:"varint,2,opt,name=y,proto3" json:"y,omitempty"`
	// contains filtered or unexported fields
}

func (*CursorPositionResponse) Descriptor deprecated

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

Deprecated: Use CursorPositionResponse.ProtoReflect.Descriptor instead.

func (*CursorPositionResponse) GetX

func (x *CursorPositionResponse) GetX() int32

func (*CursorPositionResponse) GetY

func (x *CursorPositionResponse) GetY() int32

func (*CursorPositionResponse) ProtoMessage

func (*CursorPositionResponse) ProtoMessage()

func (*CursorPositionResponse) ProtoReflect

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

func (*CursorPositionResponse) Reset

func (x *CursorPositionResponse) Reset()

func (*CursorPositionResponse) String

func (x *CursorPositionResponse) String() string

type CursorPositionStreamRequest

type CursorPositionStreamRequest struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	// contains filtered or unexported fields
}

func (*CursorPositionStreamRequest) Descriptor deprecated

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

Deprecated: Use CursorPositionStreamRequest.ProtoReflect.Descriptor instead.

func (*CursorPositionStreamRequest) GetSession

func (x *CursorPositionStreamRequest) GetSession() *Session

func (*CursorPositionStreamRequest) ProtoMessage

func (*CursorPositionStreamRequest) ProtoMessage()

func (*CursorPositionStreamRequest) ProtoReflect

func (*CursorPositionStreamRequest) Reset

func (x *CursorPositionStreamRequest) Reset()

func (*CursorPositionStreamRequest) String

func (x *CursorPositionStreamRequest) String() string

type CursorPositionStreamResponse

type CursorPositionStreamResponse struct {
	X     int32  `protobuf:"varint,1,opt,name=x,proto3" json:"x,omitempty"`
	Y     int32  `protobuf:"varint,2,opt,name=y,proto3" json:"y,omitempty"`
	Error string `protobuf:"bytes,15,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*CursorPositionStreamResponse) Descriptor deprecated

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

Deprecated: Use CursorPositionStreamResponse.ProtoReflect.Descriptor instead.

func (*CursorPositionStreamResponse) GetError

func (x *CursorPositionStreamResponse) GetError() string

func (*CursorPositionStreamResponse) GetX

func (*CursorPositionStreamResponse) GetY

func (*CursorPositionStreamResponse) ProtoMessage

func (*CursorPositionStreamResponse) ProtoMessage()

func (*CursorPositionStreamResponse) ProtoReflect

func (*CursorPositionStreamResponse) Reset

func (x *CursorPositionStreamResponse) Reset()

func (*CursorPositionStreamResponse) String

type CursorServer

type CursorServer interface {
	// get the current position of the cursor
	CursorPosition(context.Context, *CursorPositionRequest) (*CursorPositionResponse, error)
	// get the position of the cursor every time it changes
	CursorPositionStream(*CursorPositionStreamRequest, Cursor_CursorPositionStreamServer) error
}

CursorServer is the server API for Cursor service.

type Cursor_CursorPositionStreamClient

type Cursor_CursorPositionStreamClient interface {
	Recv() (*CursorPositionStreamResponse, error)
	grpc.ClientStream
}

type Cursor_CursorPositionStreamServer

type Cursor_CursorPositionStreamServer interface {
	Send(*CursorPositionStreamResponse) error
	grpc.ServerStream
}

type FileAction

type FileAction int32
const (
	FileAction_FILE_ACTION_UNKNOWN FileAction = 0
	FileAction_FILE_ACTION_CREATE  FileAction = 1
	FileAction_FILE_ACTION_WRITE   FileAction = 2
	FileAction_FILE_ACTION_REMOVE  FileAction = 3
	FileAction_FILE_ACTION_RENAME  FileAction = 4
	FileAction_FILE_ACTION_CHMOD   FileAction = 5
)

func (FileAction) Descriptor

func (FileAction) Descriptor() protoreflect.EnumDescriptor

func (FileAction) Enum

func (x FileAction) Enum() *FileAction

func (FileAction) EnumDescriptor deprecated

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

Deprecated: Use FileAction.Descriptor instead.

func (FileAction) Number

func (x FileAction) Number() protoreflect.EnumNumber

func (FileAction) String

func (x FileAction) String() string

func (FileAction) Type

type FileInfo

type FileInfo struct {
	Name    string                 `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Size    int64                  `protobuf:"varint,2,opt,name=size,proto3" json:"size,omitempty"`
	Mode    uint32                 `protobuf:"varint,3,opt,name=mode,proto3" json:"mode,omitempty"`
	Updated *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=updated,proto3" json:"updated,omitempty"`
	IsDir   bool                   `protobuf:"varint,5,opt,name=isDir,proto3" json:"isDir,omitempty"`
	// contains filtered or unexported fields
}

func (*FileInfo) Descriptor deprecated

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

Deprecated: Use FileInfo.ProtoReflect.Descriptor instead.

func (*FileInfo) GetIsDir

func (x *FileInfo) GetIsDir() bool

func (*FileInfo) GetMode

func (x *FileInfo) GetMode() uint32

func (*FileInfo) GetName

func (x *FileInfo) GetName() string

func (*FileInfo) GetSize

func (x *FileInfo) GetSize() int64

func (*FileInfo) GetUpdated

func (x *FileInfo) GetUpdated() *timestamppb.Timestamp

func (*FileInfo) ProtoMessage

func (*FileInfo) ProtoMessage()

func (*FileInfo) ProtoReflect

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

func (*FileInfo) Reset

func (x *FileInfo) Reset()

func (*FileInfo) String

func (x *FileInfo) String() string

type FilesystemClient

type FilesystemClient interface {
	// list the contents of a directory
	FilesystemDir(ctx context.Context, in *FilesystemDirRequest, opts ...grpc.CallOption) (*FilesystemDirResponse, error)
	// stream any updates to the contents of a directory
	FilesystemDirStream(ctx context.Context, in *FilesystemDirStreamRequest, opts ...grpc.CallOption) (Filesystem_FilesystemDirStreamClient, error)
	// stream any updates to a file
	FilesystemFileInfoStream(ctx context.Context, in *FilesystemFileInfoStreamRequest, opts ...grpc.CallOption) (Filesystem_FilesystemFileInfoStreamClient, error)
	// file stream
	FilesystemFileStream(ctx context.Context, opts ...grpc.CallOption) (Filesystem_FilesystemFileStreamClient, error)
	// create directory
	FilesystemMakeDir(ctx context.Context, in *FilesystemMakeDirRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	//  copy
	FilesystemCopy(ctx context.Context, in *FilesystemCopyRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	//  move
	FilesystemMove(ctx context.Context, in *FilesystemMoveRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	// remove
	FilesystemRemove(ctx context.Context, in *FilesystemRemoveRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
}

FilesystemClient is the client API for Filesystem service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewFilesystemClient

func NewFilesystemClient(cc grpc.ClientConnInterface) FilesystemClient

type FilesystemCopyRequest

type FilesystemCopyRequest struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	Source  string   `protobuf:"bytes,2,opt,name=source,proto3" json:"source,omitempty"`
	Dest    string   `protobuf:"bytes,3,opt,name=dest,proto3" json:"dest,omitempty"`
	// contains filtered or unexported fields
}

func (*FilesystemCopyRequest) Descriptor deprecated

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

Deprecated: Use FilesystemCopyRequest.ProtoReflect.Descriptor instead.

func (*FilesystemCopyRequest) GetDest

func (x *FilesystemCopyRequest) GetDest() string

func (*FilesystemCopyRequest) GetSession

func (x *FilesystemCopyRequest) GetSession() *Session

func (*FilesystemCopyRequest) GetSource

func (x *FilesystemCopyRequest) GetSource() string

func (*FilesystemCopyRequest) ProtoMessage

func (*FilesystemCopyRequest) ProtoMessage()

func (*FilesystemCopyRequest) ProtoReflect

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

func (*FilesystemCopyRequest) Reset

func (x *FilesystemCopyRequest) Reset()

func (*FilesystemCopyRequest) String

func (x *FilesystemCopyRequest) String() string

type FilesystemDirRequest

type FilesystemDirRequest struct {
	Session   *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	Directory string   `protobuf:"bytes,2,opt,name=directory,proto3" json:"directory,omitempty"`
	// contains filtered or unexported fields
}

func (*FilesystemDirRequest) Descriptor deprecated

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

Deprecated: Use FilesystemDirRequest.ProtoReflect.Descriptor instead.

func (*FilesystemDirRequest) GetDirectory

func (x *FilesystemDirRequest) GetDirectory() string

func (*FilesystemDirRequest) GetSession

func (x *FilesystemDirRequest) GetSession() *Session

func (*FilesystemDirRequest) ProtoMessage

func (*FilesystemDirRequest) ProtoMessage()

func (*FilesystemDirRequest) ProtoReflect

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

func (*FilesystemDirRequest) Reset

func (x *FilesystemDirRequest) Reset()

func (*FilesystemDirRequest) String

func (x *FilesystemDirRequest) String() string

type FilesystemDirResponse

type FilesystemDirResponse struct {
	Files []*FileInfo `protobuf:"bytes,1,rep,name=files,proto3" json:"files,omitempty"`
	// contains filtered or unexported fields
}

func (*FilesystemDirResponse) Descriptor deprecated

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

Deprecated: Use FilesystemDirResponse.ProtoReflect.Descriptor instead.

func (*FilesystemDirResponse) GetFiles

func (x *FilesystemDirResponse) GetFiles() []*FileInfo

func (*FilesystemDirResponse) ProtoMessage

func (*FilesystemDirResponse) ProtoMessage()

func (*FilesystemDirResponse) ProtoReflect

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

func (*FilesystemDirResponse) Reset

func (x *FilesystemDirResponse) Reset()

func (*FilesystemDirResponse) String

func (x *FilesystemDirResponse) String() string

type FilesystemDirStreamRequest

type FilesystemDirStreamRequest struct {
	Session   *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	Directory string   `protobuf:"bytes,2,opt,name=directory,proto3" json:"directory,omitempty"`
	// contains filtered or unexported fields
}

func (*FilesystemDirStreamRequest) Descriptor deprecated

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

Deprecated: Use FilesystemDirStreamRequest.ProtoReflect.Descriptor instead.

func (*FilesystemDirStreamRequest) GetDirectory

func (x *FilesystemDirStreamRequest) GetDirectory() string

func (*FilesystemDirStreamRequest) GetSession

func (x *FilesystemDirStreamRequest) GetSession() *Session

func (*FilesystemDirStreamRequest) ProtoMessage

func (*FilesystemDirStreamRequest) ProtoMessage()

func (*FilesystemDirStreamRequest) ProtoReflect

func (*FilesystemDirStreamRequest) Reset

func (x *FilesystemDirStreamRequest) Reset()

func (*FilesystemDirStreamRequest) String

func (x *FilesystemDirStreamRequest) String() string

type FilesystemDirStreamResponse

type FilesystemDirStreamResponse struct {
	File   *FileInfo  `protobuf:"bytes,1,opt,name=file,proto3" json:"file,omitempty"`
	Action FileAction `protobuf:"varint,2,opt,name=action,proto3,enum=proto.FileAction" json:"action,omitempty"`
	Error  string     `protobuf:"bytes,15,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*FilesystemDirStreamResponse) Descriptor deprecated

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

Deprecated: Use FilesystemDirStreamResponse.ProtoReflect.Descriptor instead.

func (*FilesystemDirStreamResponse) GetAction

func (x *FilesystemDirStreamResponse) GetAction() FileAction

func (*FilesystemDirStreamResponse) GetError

func (x *FilesystemDirStreamResponse) GetError() string

func (*FilesystemDirStreamResponse) GetFile

func (x *FilesystemDirStreamResponse) GetFile() *FileInfo

func (*FilesystemDirStreamResponse) ProtoMessage

func (*FilesystemDirStreamResponse) ProtoMessage()

func (*FilesystemDirStreamResponse) ProtoReflect

func (*FilesystemDirStreamResponse) Reset

func (x *FilesystemDirStreamResponse) Reset()

func (*FilesystemDirStreamResponse) String

func (x *FilesystemDirStreamResponse) String() string

type FilesystemFileInfoStreamRequest

type FilesystemFileInfoStreamRequest struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	Path    string   `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
	// contains filtered or unexported fields
}

func (*FilesystemFileInfoStreamRequest) Descriptor deprecated

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

Deprecated: Use FilesystemFileInfoStreamRequest.ProtoReflect.Descriptor instead.

func (*FilesystemFileInfoStreamRequest) GetPath

func (*FilesystemFileInfoStreamRequest) GetSession

func (x *FilesystemFileInfoStreamRequest) GetSession() *Session

func (*FilesystemFileInfoStreamRequest) ProtoMessage

func (*FilesystemFileInfoStreamRequest) ProtoMessage()

func (*FilesystemFileInfoStreamRequest) ProtoReflect

func (*FilesystemFileInfoStreamRequest) Reset

func (*FilesystemFileInfoStreamRequest) String

type FilesystemFileInfoStreamResponse

type FilesystemFileInfoStreamResponse struct {
	File   *FileInfo  `protobuf:"bytes,1,opt,name=file,proto3" json:"file,omitempty"`
	Action FileAction `protobuf:"varint,2,opt,name=action,proto3,enum=proto.FileAction" json:"action,omitempty"`
	Error  string     `protobuf:"bytes,15,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*FilesystemFileInfoStreamResponse) Descriptor deprecated

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

Deprecated: Use FilesystemFileInfoStreamResponse.ProtoReflect.Descriptor instead.

func (*FilesystemFileInfoStreamResponse) GetAction

func (*FilesystemFileInfoStreamResponse) GetError

func (*FilesystemFileInfoStreamResponse) GetFile

func (*FilesystemFileInfoStreamResponse) ProtoMessage

func (*FilesystemFileInfoStreamResponse) ProtoMessage()

func (*FilesystemFileInfoStreamResponse) ProtoReflect

func (*FilesystemFileInfoStreamResponse) Reset

func (*FilesystemFileInfoStreamResponse) String

type FilesystemFileStreamRequest

type FilesystemFileStreamRequest struct {

	// Types that are assignable to RequestOneOf:
	//	*FilesystemFileStreamRequest_Create_
	//	*FilesystemFileStreamRequest_Open_
	//	*FilesystemFileStreamRequest_Read_
	//	*FilesystemFileStreamRequest_Write_
	//	*FilesystemFileStreamRequest_Chmod_
	//	*FilesystemFileStreamRequest_Chown_
	//	*FilesystemFileStreamRequest_Stat_
	//	*FilesystemFileStreamRequest_Close_
	RequestOneOf isFilesystemFileStreamRequest_RequestOneOf `protobuf_oneof:"request_one_of"`
	// contains filtered or unexported fields
}

func (*FilesystemFileStreamRequest) Descriptor deprecated

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

Deprecated: Use FilesystemFileStreamRequest.ProtoReflect.Descriptor instead.

func (*FilesystemFileStreamRequest) GetChmod

func (*FilesystemFileStreamRequest) GetChown

func (*FilesystemFileStreamRequest) GetClose

func (*FilesystemFileStreamRequest) GetCreate

func (*FilesystemFileStreamRequest) GetOpen

func (*FilesystemFileStreamRequest) GetRead

func (*FilesystemFileStreamRequest) GetRequestOneOf

func (m *FilesystemFileStreamRequest) GetRequestOneOf() isFilesystemFileStreamRequest_RequestOneOf

func (*FilesystemFileStreamRequest) GetStat

func (*FilesystemFileStreamRequest) GetWrite

func (*FilesystemFileStreamRequest) ProtoMessage

func (*FilesystemFileStreamRequest) ProtoMessage()

func (*FilesystemFileStreamRequest) ProtoReflect

func (*FilesystemFileStreamRequest) Reset

func (x *FilesystemFileStreamRequest) Reset()

func (*FilesystemFileStreamRequest) String

func (x *FilesystemFileStreamRequest) String() string

type FilesystemFileStreamRequest_Chmod

type FilesystemFileStreamRequest_Chmod struct {
	Mode uint32 `protobuf:"varint,1,opt,name=mode,proto3" json:"mode,omitempty"`
	// contains filtered or unexported fields
}

func (*FilesystemFileStreamRequest_Chmod) Descriptor deprecated

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

Deprecated: Use FilesystemFileStreamRequest_Chmod.ProtoReflect.Descriptor instead.

func (*FilesystemFileStreamRequest_Chmod) GetMode

func (*FilesystemFileStreamRequest_Chmod) ProtoMessage

func (*FilesystemFileStreamRequest_Chmod) ProtoMessage()

func (*FilesystemFileStreamRequest_Chmod) ProtoReflect

func (*FilesystemFileStreamRequest_Chmod) Reset

func (*FilesystemFileStreamRequest_Chmod) String

type FilesystemFileStreamRequest_Chmod_

type FilesystemFileStreamRequest_Chmod_ struct {
	Chmod *FilesystemFileStreamRequest_Chmod `protobuf:"bytes,5,opt,name=chmod,proto3,oneof"`
}

type FilesystemFileStreamRequest_Chown

type FilesystemFileStreamRequest_Chown struct {
	Uid int32 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Gid int32 `protobuf:"varint,2,opt,name=gid,proto3" json:"gid,omitempty"`
	// contains filtered or unexported fields
}

func (*FilesystemFileStreamRequest_Chown) Descriptor deprecated

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

Deprecated: Use FilesystemFileStreamRequest_Chown.ProtoReflect.Descriptor instead.

func (*FilesystemFileStreamRequest_Chown) GetGid

func (*FilesystemFileStreamRequest_Chown) GetUid

func (*FilesystemFileStreamRequest_Chown) ProtoMessage

func (*FilesystemFileStreamRequest_Chown) ProtoMessage()

func (*FilesystemFileStreamRequest_Chown) ProtoReflect

func (*FilesystemFileStreamRequest_Chown) Reset

func (*FilesystemFileStreamRequest_Chown) String

type FilesystemFileStreamRequest_Chown_

type FilesystemFileStreamRequest_Chown_ struct {
	Chown *FilesystemFileStreamRequest_Chown `protobuf:"bytes,6,opt,name=chown,proto3,oneof"`
}

type FilesystemFileStreamRequest_Close

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

func (*FilesystemFileStreamRequest_Close) Descriptor deprecated

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

Deprecated: Use FilesystemFileStreamRequest_Close.ProtoReflect.Descriptor instead.

func (*FilesystemFileStreamRequest_Close) ProtoMessage

func (*FilesystemFileStreamRequest_Close) ProtoMessage()

func (*FilesystemFileStreamRequest_Close) ProtoReflect

func (*FilesystemFileStreamRequest_Close) Reset

func (*FilesystemFileStreamRequest_Close) String

type FilesystemFileStreamRequest_Close_

type FilesystemFileStreamRequest_Close_ struct {
	Close *FilesystemFileStreamRequest_Close `protobuf:"bytes,8,opt,name=close,proto3,oneof"`
}

type FilesystemFileStreamRequest_Create

type FilesystemFileStreamRequest_Create struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	Path    string   `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
	// contains filtered or unexported fields
}

func (*FilesystemFileStreamRequest_Create) Descriptor deprecated

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

Deprecated: Use FilesystemFileStreamRequest_Create.ProtoReflect.Descriptor instead.

func (*FilesystemFileStreamRequest_Create) GetPath

func (*FilesystemFileStreamRequest_Create) GetSession

func (*FilesystemFileStreamRequest_Create) ProtoMessage

func (*FilesystemFileStreamRequest_Create) ProtoMessage()

func (*FilesystemFileStreamRequest_Create) ProtoReflect

func (*FilesystemFileStreamRequest_Create) Reset

func (*FilesystemFileStreamRequest_Create) String

type FilesystemFileStreamRequest_Create_

type FilesystemFileStreamRequest_Create_ struct {
	Create *FilesystemFileStreamRequest_Create `protobuf:"bytes,1,opt,name=create,proto3,oneof"`
}

type FilesystemFileStreamRequest_Open

type FilesystemFileStreamRequest_Open struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	Path    string   `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
	// contains filtered or unexported fields
}

func (*FilesystemFileStreamRequest_Open) Descriptor deprecated

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

Deprecated: Use FilesystemFileStreamRequest_Open.ProtoReflect.Descriptor instead.

func (*FilesystemFileStreamRequest_Open) GetPath

func (*FilesystemFileStreamRequest_Open) GetSession

func (x *FilesystemFileStreamRequest_Open) GetSession() *Session

func (*FilesystemFileStreamRequest_Open) ProtoMessage

func (*FilesystemFileStreamRequest_Open) ProtoMessage()

func (*FilesystemFileStreamRequest_Open) ProtoReflect

func (*FilesystemFileStreamRequest_Open) Reset

func (*FilesystemFileStreamRequest_Open) String

type FilesystemFileStreamRequest_Open_

type FilesystemFileStreamRequest_Open_ struct {
	Open *FilesystemFileStreamRequest_Open `protobuf:"bytes,2,opt,name=open,proto3,oneof"`
}

type FilesystemFileStreamRequest_Read

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

func (*FilesystemFileStreamRequest_Read) Descriptor deprecated

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

Deprecated: Use FilesystemFileStreamRequest_Read.ProtoReflect.Descriptor instead.

func (*FilesystemFileStreamRequest_Read) ProtoMessage

func (*FilesystemFileStreamRequest_Read) ProtoMessage()

func (*FilesystemFileStreamRequest_Read) ProtoReflect

func (*FilesystemFileStreamRequest_Read) Reset

func (*FilesystemFileStreamRequest_Read) String

type FilesystemFileStreamRequest_Read_

type FilesystemFileStreamRequest_Read_ struct {
	Read *FilesystemFileStreamRequest_Read `protobuf:"bytes,3,opt,name=read,proto3,oneof"`
}

type FilesystemFileStreamRequest_Stat

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

func (*FilesystemFileStreamRequest_Stat) Descriptor deprecated

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

Deprecated: Use FilesystemFileStreamRequest_Stat.ProtoReflect.Descriptor instead.

func (*FilesystemFileStreamRequest_Stat) ProtoMessage

func (*FilesystemFileStreamRequest_Stat) ProtoMessage()

func (*FilesystemFileStreamRequest_Stat) ProtoReflect

func (*FilesystemFileStreamRequest_Stat) Reset

func (*FilesystemFileStreamRequest_Stat) String

type FilesystemFileStreamRequest_Stat_

type FilesystemFileStreamRequest_Stat_ struct {
	Stat *FilesystemFileStreamRequest_Stat `protobuf:"bytes,7,opt,name=stat,proto3,oneof"`
}

type FilesystemFileStreamRequest_Write

type FilesystemFileStreamRequest_Write struct {
	Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*FilesystemFileStreamRequest_Write) Descriptor deprecated

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

Deprecated: Use FilesystemFileStreamRequest_Write.ProtoReflect.Descriptor instead.

func (*FilesystemFileStreamRequest_Write) GetData

func (x *FilesystemFileStreamRequest_Write) GetData() []byte

func (*FilesystemFileStreamRequest_Write) ProtoMessage

func (*FilesystemFileStreamRequest_Write) ProtoMessage()

func (*FilesystemFileStreamRequest_Write) ProtoReflect

func (*FilesystemFileStreamRequest_Write) Reset

func (*FilesystemFileStreamRequest_Write) String

type FilesystemFileStreamRequest_Write_

type FilesystemFileStreamRequest_Write_ struct {
	Write *FilesystemFileStreamRequest_Write `protobuf:"bytes,4,opt,name=write,proto3,oneof"`
}

type FilesystemFileStreamResponse

type FilesystemFileStreamResponse struct {

	// Types that are assignable to ResponseOneOf:
	//	*FilesystemFileStreamResponse_Read_
	//	*FilesystemFileStreamResponse_Write_
	//	*FilesystemFileStreamResponse_Chmod_
	//	*FilesystemFileStreamResponse_Chown_
	//	*FilesystemFileStreamResponse_Stat_
	ResponseOneOf isFilesystemFileStreamResponse_ResponseOneOf `protobuf_oneof:"response_one_of"`
	// contains filtered or unexported fields
}

func (*FilesystemFileStreamResponse) Descriptor deprecated

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

Deprecated: Use FilesystemFileStreamResponse.ProtoReflect.Descriptor instead.

func (*FilesystemFileStreamResponse) GetChmod

func (*FilesystemFileStreamResponse) GetChown

func (*FilesystemFileStreamResponse) GetRead

func (*FilesystemFileStreamResponse) GetResponseOneOf

func (m *FilesystemFileStreamResponse) GetResponseOneOf() isFilesystemFileStreamResponse_ResponseOneOf

func (*FilesystemFileStreamResponse) GetStat

func (*FilesystemFileStreamResponse) GetWrite

func (*FilesystemFileStreamResponse) ProtoMessage

func (*FilesystemFileStreamResponse) ProtoMessage()

func (*FilesystemFileStreamResponse) ProtoReflect

func (*FilesystemFileStreamResponse) Reset

func (x *FilesystemFileStreamResponse) Reset()

func (*FilesystemFileStreamResponse) String

type FilesystemFileStreamResponse_Chmod

type FilesystemFileStreamResponse_Chmod struct {
	Error string `protobuf:"bytes,15,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*FilesystemFileStreamResponse_Chmod) Descriptor deprecated

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

Deprecated: Use FilesystemFileStreamResponse_Chmod.ProtoReflect.Descriptor instead.

func (*FilesystemFileStreamResponse_Chmod) GetError

func (*FilesystemFileStreamResponse_Chmod) ProtoMessage

func (*FilesystemFileStreamResponse_Chmod) ProtoMessage()

func (*FilesystemFileStreamResponse_Chmod) ProtoReflect

func (*FilesystemFileStreamResponse_Chmod) Reset

func (*FilesystemFileStreamResponse_Chmod) String

type FilesystemFileStreamResponse_Chmod_

type FilesystemFileStreamResponse_Chmod_ struct {
	Chmod *FilesystemFileStreamResponse_Chmod `protobuf:"bytes,3,opt,name=chmod,proto3,oneof"`
}

type FilesystemFileStreamResponse_Chown

type FilesystemFileStreamResponse_Chown struct {
	Error string `protobuf:"bytes,15,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*FilesystemFileStreamResponse_Chown) Descriptor deprecated

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

Deprecated: Use FilesystemFileStreamResponse_Chown.ProtoReflect.Descriptor instead.

func (*FilesystemFileStreamResponse_Chown) GetError

func (*FilesystemFileStreamResponse_Chown) ProtoMessage

func (*FilesystemFileStreamResponse_Chown) ProtoMessage()

func (*FilesystemFileStreamResponse_Chown) ProtoReflect

func (*FilesystemFileStreamResponse_Chown) Reset

func (*FilesystemFileStreamResponse_Chown) String

type FilesystemFileStreamResponse_Chown_

type FilesystemFileStreamResponse_Chown_ struct {
	Chown *FilesystemFileStreamResponse_Chown `protobuf:"bytes,4,opt,name=chown,proto3,oneof"`
}

type FilesystemFileStreamResponse_Read

type FilesystemFileStreamResponse_Read struct {
	Data  []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Error string `protobuf:"bytes,15,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*FilesystemFileStreamResponse_Read) Descriptor deprecated

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

Deprecated: Use FilesystemFileStreamResponse_Read.ProtoReflect.Descriptor instead.

func (*FilesystemFileStreamResponse_Read) GetData

func (x *FilesystemFileStreamResponse_Read) GetData() []byte

func (*FilesystemFileStreamResponse_Read) GetError

func (*FilesystemFileStreamResponse_Read) ProtoMessage

func (*FilesystemFileStreamResponse_Read) ProtoMessage()

func (*FilesystemFileStreamResponse_Read) ProtoReflect

func (*FilesystemFileStreamResponse_Read) Reset

func (*FilesystemFileStreamResponse_Read) String

type FilesystemFileStreamResponse_Read_

type FilesystemFileStreamResponse_Read_ struct {
	Read *FilesystemFileStreamResponse_Read `protobuf:"bytes,1,opt,name=read,proto3,oneof"`
}

type FilesystemFileStreamResponse_Stat

type FilesystemFileStreamResponse_Stat struct {
	Info  *FileInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
	Error string    `protobuf:"bytes,15,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*FilesystemFileStreamResponse_Stat) Descriptor deprecated

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

Deprecated: Use FilesystemFileStreamResponse_Stat.ProtoReflect.Descriptor instead.

func (*FilesystemFileStreamResponse_Stat) GetError

func (*FilesystemFileStreamResponse_Stat) GetInfo

func (*FilesystemFileStreamResponse_Stat) ProtoMessage

func (*FilesystemFileStreamResponse_Stat) ProtoMessage()

func (*FilesystemFileStreamResponse_Stat) ProtoReflect

func (*FilesystemFileStreamResponse_Stat) Reset

func (*FilesystemFileStreamResponse_Stat) String

type FilesystemFileStreamResponse_Stat_

type FilesystemFileStreamResponse_Stat_ struct {
	Stat *FilesystemFileStreamResponse_Stat `protobuf:"bytes,5,opt,name=stat,proto3,oneof"`
}

type FilesystemFileStreamResponse_Write

type FilesystemFileStreamResponse_Write struct {
	NumOfBytes int32  `protobuf:"varint,1,opt,name=numOfBytes,proto3" json:"numOfBytes,omitempty"`
	Error      string `protobuf:"bytes,15,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*FilesystemFileStreamResponse_Write) Descriptor deprecated

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

Deprecated: Use FilesystemFileStreamResponse_Write.ProtoReflect.Descriptor instead.

func (*FilesystemFileStreamResponse_Write) GetError

func (*FilesystemFileStreamResponse_Write) GetNumOfBytes

func (x *FilesystemFileStreamResponse_Write) GetNumOfBytes() int32

func (*FilesystemFileStreamResponse_Write) ProtoMessage

func (*FilesystemFileStreamResponse_Write) ProtoMessage()

func (*FilesystemFileStreamResponse_Write) ProtoReflect

func (*FilesystemFileStreamResponse_Write) Reset

func (*FilesystemFileStreamResponse_Write) String

type FilesystemFileStreamResponse_Write_

type FilesystemFileStreamResponse_Write_ struct {
	Write *FilesystemFileStreamResponse_Write `protobuf:"bytes,2,opt,name=write,proto3,oneof"`
}

type FilesystemMakeDirRequest

type FilesystemMakeDirRequest struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	Path    string   `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
	Perm    uint32   `protobuf:"varint,3,opt,name=perm,proto3" json:"perm,omitempty"`
	// contains filtered or unexported fields
}

func (*FilesystemMakeDirRequest) Descriptor deprecated

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

Deprecated: Use FilesystemMakeDirRequest.ProtoReflect.Descriptor instead.

func (*FilesystemMakeDirRequest) GetPath

func (x *FilesystemMakeDirRequest) GetPath() string

func (*FilesystemMakeDirRequest) GetPerm

func (x *FilesystemMakeDirRequest) GetPerm() uint32

func (*FilesystemMakeDirRequest) GetSession

func (x *FilesystemMakeDirRequest) GetSession() *Session

func (*FilesystemMakeDirRequest) ProtoMessage

func (*FilesystemMakeDirRequest) ProtoMessage()

func (*FilesystemMakeDirRequest) ProtoReflect

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

func (*FilesystemMakeDirRequest) Reset

func (x *FilesystemMakeDirRequest) Reset()

func (*FilesystemMakeDirRequest) String

func (x *FilesystemMakeDirRequest) String() string

type FilesystemMoveRequest

type FilesystemMoveRequest struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	Source  string   `protobuf:"bytes,2,opt,name=source,proto3" json:"source,omitempty"`
	Dest    string   `protobuf:"bytes,3,opt,name=dest,proto3" json:"dest,omitempty"`
	// contains filtered or unexported fields
}

func (*FilesystemMoveRequest) Descriptor deprecated

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

Deprecated: Use FilesystemMoveRequest.ProtoReflect.Descriptor instead.

func (*FilesystemMoveRequest) GetDest

func (x *FilesystemMoveRequest) GetDest() string

func (*FilesystemMoveRequest) GetSession

func (x *FilesystemMoveRequest) GetSession() *Session

func (*FilesystemMoveRequest) GetSource

func (x *FilesystemMoveRequest) GetSource() string

func (*FilesystemMoveRequest) ProtoMessage

func (*FilesystemMoveRequest) ProtoMessage()

func (*FilesystemMoveRequest) ProtoReflect

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

func (*FilesystemMoveRequest) Reset

func (x *FilesystemMoveRequest) Reset()

func (*FilesystemMoveRequest) String

func (x *FilesystemMoveRequest) String() string

type FilesystemRemoveRequest

type FilesystemRemoveRequest struct {
	Session   *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	Path      string   `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
	Recursive bool     `protobuf:"varint,3,opt,name=recursive,proto3" json:"recursive,omitempty"`
	// contains filtered or unexported fields
}

func (*FilesystemRemoveRequest) Descriptor deprecated

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

Deprecated: Use FilesystemRemoveRequest.ProtoReflect.Descriptor instead.

func (*FilesystemRemoveRequest) GetPath

func (x *FilesystemRemoveRequest) GetPath() string

func (*FilesystemRemoveRequest) GetRecursive

func (x *FilesystemRemoveRequest) GetRecursive() bool

func (*FilesystemRemoveRequest) GetSession

func (x *FilesystemRemoveRequest) GetSession() *Session

func (*FilesystemRemoveRequest) ProtoMessage

func (*FilesystemRemoveRequest) ProtoMessage()

func (*FilesystemRemoveRequest) ProtoReflect

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

func (*FilesystemRemoveRequest) Reset

func (x *FilesystemRemoveRequest) Reset()

func (*FilesystemRemoveRequest) String

func (x *FilesystemRemoveRequest) String() string

type FilesystemServer

type FilesystemServer interface {
	// list the contents of a directory
	FilesystemDir(context.Context, *FilesystemDirRequest) (*FilesystemDirResponse, error)
	// stream any updates to the contents of a directory
	FilesystemDirStream(*FilesystemDirStreamRequest, Filesystem_FilesystemDirStreamServer) error
	// stream any updates to a file
	FilesystemFileInfoStream(*FilesystemFileInfoStreamRequest, Filesystem_FilesystemFileInfoStreamServer) error
	// file stream
	FilesystemFileStream(Filesystem_FilesystemFileStreamServer) error
	// create directory
	FilesystemMakeDir(context.Context, *FilesystemMakeDirRequest) (*emptypb.Empty, error)
	//  copy
	FilesystemCopy(context.Context, *FilesystemCopyRequest) (*emptypb.Empty, error)
	//  move
	FilesystemMove(context.Context, *FilesystemMoveRequest) (*emptypb.Empty, error)
	// remove
	FilesystemRemove(context.Context, *FilesystemRemoveRequest) (*emptypb.Empty, error)
}

FilesystemServer is the server API for Filesystem service.

type Filesystem_FilesystemDirStreamClient

type Filesystem_FilesystemDirStreamClient interface {
	Recv() (*FilesystemDirStreamResponse, error)
	grpc.ClientStream
}

type Filesystem_FilesystemDirStreamServer

type Filesystem_FilesystemDirStreamServer interface {
	Send(*FilesystemDirStreamResponse) error
	grpc.ServerStream
}

type Filesystem_FilesystemFileInfoStreamClient

type Filesystem_FilesystemFileInfoStreamClient interface {
	Recv() (*FilesystemFileInfoStreamResponse, error)
	grpc.ClientStream
}

type Filesystem_FilesystemFileInfoStreamServer

type Filesystem_FilesystemFileInfoStreamServer interface {
	Send(*FilesystemFileInfoStreamResponse) error
	grpc.ServerStream
}

type Filesystem_FilesystemFileStreamClient

type Filesystem_FilesystemFileStreamClient interface {
	Send(*FilesystemFileStreamRequest) error
	Recv() (*FilesystemFileStreamResponse, error)
	grpc.ClientStream
}

type Filesystem_FilesystemFileStreamServer

type Filesystem_FilesystemFileStreamServer interface {
	Send(*FilesystemFileStreamResponse) error
	Recv() (*FilesystemFileStreamRequest, error)
	grpc.ServerStream
}

type GlobalSearchStreamRequest

type GlobalSearchStreamRequest struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	// contains filtered or unexported fields
}

func (*GlobalSearchStreamRequest) Descriptor deprecated

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

Deprecated: Use GlobalSearchStreamRequest.ProtoReflect.Descriptor instead.

func (*GlobalSearchStreamRequest) GetSession

func (x *GlobalSearchStreamRequest) GetSession() *Session

func (*GlobalSearchStreamRequest) ProtoMessage

func (*GlobalSearchStreamRequest) ProtoMessage()

func (*GlobalSearchStreamRequest) ProtoReflect

func (*GlobalSearchStreamRequest) Reset

func (x *GlobalSearchStreamRequest) Reset()

func (*GlobalSearchStreamRequest) String

func (x *GlobalSearchStreamRequest) String() string

type GlobalSearchStreamResponse

type GlobalSearchStreamResponse struct {
	Text  string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	Error string `protobuf:"bytes,15,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*GlobalSearchStreamResponse) Descriptor deprecated

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

Deprecated: Use GlobalSearchStreamResponse.ProtoReflect.Descriptor instead.

func (*GlobalSearchStreamResponse) GetError

func (x *GlobalSearchStreamResponse) GetError() string

func (*GlobalSearchStreamResponse) GetText

func (x *GlobalSearchStreamResponse) GetText() string

func (*GlobalSearchStreamResponse) ProtoMessage

func (*GlobalSearchStreamResponse) ProtoMessage()

func (*GlobalSearchStreamResponse) ProtoReflect

func (*GlobalSearchStreamResponse) Reset

func (x *GlobalSearchStreamResponse) Reset()

func (*GlobalSearchStreamResponse) String

func (x *GlobalSearchStreamResponse) String() string

type HTTPHeader

type HTTPHeader struct {
	Values []string `protobuf:"bytes,1,rep,name=values,proto3" json:"values,omitempty"`
	// contains filtered or unexported fields
}

func (*HTTPHeader) Descriptor deprecated

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

Deprecated: Use HTTPHeader.ProtoReflect.Descriptor instead.

func (*HTTPHeader) GetValues

func (x *HTTPHeader) GetValues() []string

func (*HTTPHeader) ProtoMessage

func (*HTTPHeader) ProtoMessage()

func (*HTTPHeader) ProtoReflect

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

func (*HTTPHeader) Reset

func (x *HTTPHeader) Reset()

func (*HTTPHeader) String

func (x *HTTPHeader) String() string

type HTTPRequestMsg

type HTTPRequestMsg struct {
	Session *Session               `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	Url     string                 `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
	Method  string                 `protobuf:"bytes,3,opt,name=method,proto3" json:"method,omitempty"`
	Body    []byte                 `protobuf:"bytes,4,opt,name=body,proto3" json:"body,omitempty"`
	Headers map[string]*HTTPHeader `` /* 155-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*HTTPRequestMsg) Descriptor deprecated

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

Deprecated: Use HTTPRequestMsg.ProtoReflect.Descriptor instead.

func (*HTTPRequestMsg) GetBody

func (x *HTTPRequestMsg) GetBody() []byte

func (*HTTPRequestMsg) GetHeaders

func (x *HTTPRequestMsg) GetHeaders() map[string]*HTTPHeader

func (*HTTPRequestMsg) GetMethod

func (x *HTTPRequestMsg) GetMethod() string

func (*HTTPRequestMsg) GetSession

func (x *HTTPRequestMsg) GetSession() *Session

func (*HTTPRequestMsg) GetUrl

func (x *HTTPRequestMsg) GetUrl() string

func (*HTTPRequestMsg) ProtoMessage

func (*HTTPRequestMsg) ProtoMessage()

func (*HTTPRequestMsg) ProtoReflect

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

func (*HTTPRequestMsg) Reset

func (x *HTTPRequestMsg) Reset()

func (*HTTPRequestMsg) String

func (x *HTTPRequestMsg) String() string

type HTTPResponseMsg

type HTTPResponseMsg struct {
	ResponseCode uint32                 `protobuf:"varint,1,opt,name=responseCode,proto3" json:"responseCode,omitempty"`
	Data         []byte                 `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	Headers      map[string]*HTTPHeader `` /* 155-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*HTTPResponseMsg) Descriptor deprecated

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

Deprecated: Use HTTPResponseMsg.ProtoReflect.Descriptor instead.

func (*HTTPResponseMsg) GetData

func (x *HTTPResponseMsg) GetData() []byte

func (*HTTPResponseMsg) GetHeaders

func (x *HTTPResponseMsg) GetHeaders() map[string]*HTTPHeader

func (*HTTPResponseMsg) GetResponseCode

func (x *HTTPResponseMsg) GetResponseCode() uint32

func (*HTTPResponseMsg) ProtoMessage

func (*HTTPResponseMsg) ProtoMessage()

func (*HTTPResponseMsg) ProtoReflect

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

func (*HTTPResponseMsg) Reset

func (x *HTTPResponseMsg) Reset()

func (*HTTPResponseMsg) String

func (x *HTTPResponseMsg) String() string

type HoverClient

type HoverClient interface {
	// read the text under the cursor
	HoverRead(ctx context.Context, in *HoverReadRequest, opts ...grpc.CallOption) (*HoverReadResponse, error)
	// stream the text under the cursor as it changes
	HoverReadStream(ctx context.Context, in *HoverReadStreamRequest, opts ...grpc.CallOption) (Hover_HoverReadStreamClient, error)
}

HoverClient is the client API for Hover service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewHoverClient

func NewHoverClient(cc grpc.ClientConnInterface) HoverClient

type HoverReadRequest

type HoverReadRequest struct {
	Session     *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	XFromCenter uint32   `protobuf:"varint,2,opt,name=xFromCenter,proto3" json:"xFromCenter,omitempty"`
	YFromCenter uint32   `protobuf:"varint,3,opt,name=yFromCenter,proto3" json:"yFromCenter,omitempty"`
	// contains filtered or unexported fields
}

func (*HoverReadRequest) Descriptor deprecated

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

Deprecated: Use HoverReadRequest.ProtoReflect.Descriptor instead.

func (*HoverReadRequest) GetSession

func (x *HoverReadRequest) GetSession() *Session

func (*HoverReadRequest) GetXFromCenter

func (x *HoverReadRequest) GetXFromCenter() uint32

func (*HoverReadRequest) GetYFromCenter

func (x *HoverReadRequest) GetYFromCenter() uint32

func (*HoverReadRequest) ProtoMessage

func (*HoverReadRequest) ProtoMessage()

func (*HoverReadRequest) ProtoReflect

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

func (*HoverReadRequest) Reset

func (x *HoverReadRequest) Reset()

func (*HoverReadRequest) String

func (x *HoverReadRequest) String() string

type HoverReadResponse

type HoverReadResponse struct {
	Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	// contains filtered or unexported fields
}

func (*HoverReadResponse) Descriptor deprecated

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

Deprecated: Use HoverReadResponse.ProtoReflect.Descriptor instead.

func (*HoverReadResponse) GetText

func (x *HoverReadResponse) GetText() string

func (*HoverReadResponse) ProtoMessage

func (*HoverReadResponse) ProtoMessage()

func (*HoverReadResponse) ProtoReflect

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

func (*HoverReadResponse) Reset

func (x *HoverReadResponse) Reset()

func (*HoverReadResponse) String

func (x *HoverReadResponse) String() string

type HoverReadStreamRequest

type HoverReadStreamRequest struct {
	Session     *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	XFromCenter uint32   `protobuf:"varint,2,opt,name=xFromCenter,proto3" json:"xFromCenter,omitempty"`
	YFromCenter uint32   `protobuf:"varint,3,opt,name=yFromCenter,proto3" json:"yFromCenter,omitempty"`
	// contains filtered or unexported fields
}

func (*HoverReadStreamRequest) Descriptor deprecated

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

Deprecated: Use HoverReadStreamRequest.ProtoReflect.Descriptor instead.

func (*HoverReadStreamRequest) GetSession

func (x *HoverReadStreamRequest) GetSession() *Session

func (*HoverReadStreamRequest) GetXFromCenter

func (x *HoverReadStreamRequest) GetXFromCenter() uint32

func (*HoverReadStreamRequest) GetYFromCenter

func (x *HoverReadStreamRequest) GetYFromCenter() uint32

func (*HoverReadStreamRequest) ProtoMessage

func (*HoverReadStreamRequest) ProtoMessage()

func (*HoverReadStreamRequest) ProtoReflect

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

func (*HoverReadStreamRequest) Reset

func (x *HoverReadStreamRequest) Reset()

func (*HoverReadStreamRequest) String

func (x *HoverReadStreamRequest) String() string

type HoverReadStreamResponse

type HoverReadStreamResponse struct {
	Text  string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	Error string `protobuf:"bytes,15,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*HoverReadStreamResponse) Descriptor deprecated

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

Deprecated: Use HoverReadStreamResponse.ProtoReflect.Descriptor instead.

func (*HoverReadStreamResponse) GetError

func (x *HoverReadStreamResponse) GetError() string

func (*HoverReadStreamResponse) GetText

func (x *HoverReadStreamResponse) GetText() string

func (*HoverReadStreamResponse) ProtoMessage

func (*HoverReadStreamResponse) ProtoMessage()

func (*HoverReadStreamResponse) ProtoReflect

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

func (*HoverReadStreamResponse) Reset

func (x *HoverReadStreamResponse) Reset()

func (*HoverReadStreamResponse) String

func (x *HoverReadStreamResponse) String() string

type HoverServer

type HoverServer interface {
	// read the text under the cursor
	HoverRead(context.Context, *HoverReadRequest) (*HoverReadResponse, error)
	// stream the text under the cursor as it changes
	HoverReadStream(*HoverReadStreamRequest, Hover_HoverReadStreamServer) error
}

HoverServer is the server API for Hover service.

type Hover_HoverReadStreamClient

type Hover_HoverReadStreamClient interface {
	Recv() (*HoverReadStreamResponse, error)
	grpc.ClientStream
}

type Hover_HoverReadStreamServer

type Hover_HoverReadStreamServer interface {
	Send(*HoverReadStreamResponse) error
	grpc.ServerStream
}

type KeyboardCharacterStreamRequest

type KeyboardCharacterStreamRequest struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	// contains filtered or unexported fields
}

func (*KeyboardCharacterStreamRequest) Descriptor deprecated

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

Deprecated: Use KeyboardCharacterStreamRequest.ProtoReflect.Descriptor instead.

func (*KeyboardCharacterStreamRequest) GetSession

func (x *KeyboardCharacterStreamRequest) GetSession() *Session

func (*KeyboardCharacterStreamRequest) ProtoMessage

func (*KeyboardCharacterStreamRequest) ProtoMessage()

func (*KeyboardCharacterStreamRequest) ProtoReflect

func (*KeyboardCharacterStreamRequest) Reset

func (x *KeyboardCharacterStreamRequest) Reset()

func (*KeyboardCharacterStreamRequest) String

type KeyboardCharacterStreamResponse

type KeyboardCharacterStreamResponse struct {
	Text  string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	Error string `protobuf:"bytes,15,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*KeyboardCharacterStreamResponse) Descriptor deprecated

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

Deprecated: Use KeyboardCharacterStreamResponse.ProtoReflect.Descriptor instead.

func (*KeyboardCharacterStreamResponse) GetError

func (*KeyboardCharacterStreamResponse) GetText

func (*KeyboardCharacterStreamResponse) ProtoMessage

func (*KeyboardCharacterStreamResponse) ProtoMessage()

func (*KeyboardCharacterStreamResponse) ProtoReflect

func (*KeyboardCharacterStreamResponse) Reset

func (*KeyboardCharacterStreamResponse) String

type KeyboardClient

type KeyboardClient interface {
	// register a hotkey and receive streamed messages when it is pressed
	KeyboardHotkeyStream(ctx context.Context, in *KeyboardHotkeyStreamRequest, opts ...grpc.CallOption) (Keyboard_KeyboardHotkeyStreamClient, error)
	// stream chunks of text when the user finishes typing them
	KeyboardTextStream(ctx context.Context, in *KeyboardTextStreamRequest, opts ...grpc.CallOption) (Keyboard_KeyboardTextStreamClient, error)
	// stream text as it is typed
	KeyboardCharacterStream(ctx context.Context, in *KeyboardCharacterStreamRequest, opts ...grpc.CallOption) (Keyboard_KeyboardCharacterStreamClient, error)
}

KeyboardClient is the client API for Keyboard service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewKeyboardClient

func NewKeyboardClient(cc grpc.ClientConnInterface) KeyboardClient

type KeyboardHotkey

type KeyboardHotkey struct {
	Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	// bit 0  = altL
	// bit 1  = altR
	// bit 2  = alt
	// bit 3  = ctrlL
	// bit 4  = ctrlR
	// bit 5  = ctrl
	// bit 6  = metaL
	// bit 7  = metaR
	// bit 8  = meta
	// bit 9  = shiftL
	// bit 10 = shiftR
	// bit 11 = shift
	Modifiers int32 `protobuf:"varint,2,opt,name=modifiers,proto3" json:"modifiers,omitempty"`
	// contains filtered or unexported fields
}

func (*KeyboardHotkey) Descriptor deprecated

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

Deprecated: Use KeyboardHotkey.ProtoReflect.Descriptor instead.

func (*KeyboardHotkey) GetKey

func (x *KeyboardHotkey) GetKey() string

func (*KeyboardHotkey) GetModifiers

func (x *KeyboardHotkey) GetModifiers() int32

func (*KeyboardHotkey) ProtoMessage

func (*KeyboardHotkey) ProtoMessage()

func (*KeyboardHotkey) ProtoReflect

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

func (*KeyboardHotkey) Reset

func (x *KeyboardHotkey) Reset()

func (*KeyboardHotkey) String

func (x *KeyboardHotkey) String() string

type KeyboardHotkeyStreamRequest

type KeyboardHotkeyStreamRequest struct {
	Session *Session        `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	Hotkey  *KeyboardHotkey `protobuf:"bytes,2,opt,name=hotkey,proto3" json:"hotkey,omitempty"`
	// contains filtered or unexported fields
}

func (*KeyboardHotkeyStreamRequest) Descriptor deprecated

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

Deprecated: Use KeyboardHotkeyStreamRequest.ProtoReflect.Descriptor instead.

func (*KeyboardHotkeyStreamRequest) GetHotkey

func (*KeyboardHotkeyStreamRequest) GetSession

func (x *KeyboardHotkeyStreamRequest) GetSession() *Session

func (*KeyboardHotkeyStreamRequest) ProtoMessage

func (*KeyboardHotkeyStreamRequest) ProtoMessage()

func (*KeyboardHotkeyStreamRequest) ProtoReflect

func (*KeyboardHotkeyStreamRequest) Reset

func (x *KeyboardHotkeyStreamRequest) Reset()

func (*KeyboardHotkeyStreamRequest) String

func (x *KeyboardHotkeyStreamRequest) String() string

type KeyboardHotkeyStreamResponse

type KeyboardHotkeyStreamResponse struct {
	Scanned bool   `protobuf:"varint,1,opt,name=scanned,proto3" json:"scanned,omitempty"`
	Error   string `protobuf:"bytes,15,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*KeyboardHotkeyStreamResponse) Descriptor deprecated

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

Deprecated: Use KeyboardHotkeyStreamResponse.ProtoReflect.Descriptor instead.

func (*KeyboardHotkeyStreamResponse) GetError

func (x *KeyboardHotkeyStreamResponse) GetError() string

func (*KeyboardHotkeyStreamResponse) GetScanned

func (x *KeyboardHotkeyStreamResponse) GetScanned() bool

func (*KeyboardHotkeyStreamResponse) ProtoMessage

func (*KeyboardHotkeyStreamResponse) ProtoMessage()

func (*KeyboardHotkeyStreamResponse) ProtoReflect

func (*KeyboardHotkeyStreamResponse) Reset

func (x *KeyboardHotkeyStreamResponse) Reset()

func (*KeyboardHotkeyStreamResponse) String

type KeyboardServer

type KeyboardServer interface {
	// register a hotkey and receive streamed messages when it is pressed
	KeyboardHotkeyStream(*KeyboardHotkeyStreamRequest, Keyboard_KeyboardHotkeyStreamServer) error
	// stream chunks of text when the user finishes typing them
	KeyboardTextStream(*KeyboardTextStreamRequest, Keyboard_KeyboardTextStreamServer) error
	// stream text as it is typed
	KeyboardCharacterStream(*KeyboardCharacterStreamRequest, Keyboard_KeyboardCharacterStreamServer) error
}

KeyboardServer is the server API for Keyboard service.

type KeyboardTextStreamRequest

type KeyboardTextStreamRequest struct {
	Session                  *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	IncludeOliveHelpsTraffic bool     `protobuf:"varint,2,opt,name=IncludeOliveHelpsTraffic,proto3" json:"IncludeOliveHelpsTraffic,omitempty"`
	// contains filtered or unexported fields
}

func (*KeyboardTextStreamRequest) Descriptor deprecated

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

Deprecated: Use KeyboardTextStreamRequest.ProtoReflect.Descriptor instead.

func (*KeyboardTextStreamRequest) GetIncludeOliveHelpsTraffic

func (x *KeyboardTextStreamRequest) GetIncludeOliveHelpsTraffic() bool

func (*KeyboardTextStreamRequest) GetSession

func (x *KeyboardTextStreamRequest) GetSession() *Session

func (*KeyboardTextStreamRequest) ProtoMessage

func (*KeyboardTextStreamRequest) ProtoMessage()

func (*KeyboardTextStreamRequest) ProtoReflect

func (*KeyboardTextStreamRequest) Reset

func (x *KeyboardTextStreamRequest) Reset()

func (*KeyboardTextStreamRequest) String

func (x *KeyboardTextStreamRequest) String() string

type KeyboardTextStreamResponse

type KeyboardTextStreamResponse struct {
	Text  string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	Error string `protobuf:"bytes,15,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*KeyboardTextStreamResponse) Descriptor deprecated

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

Deprecated: Use KeyboardTextStreamResponse.ProtoReflect.Descriptor instead.

func (*KeyboardTextStreamResponse) GetError

func (x *KeyboardTextStreamResponse) GetError() string

func (*KeyboardTextStreamResponse) GetText

func (x *KeyboardTextStreamResponse) GetText() string

func (*KeyboardTextStreamResponse) ProtoMessage

func (*KeyboardTextStreamResponse) ProtoMessage()

func (*KeyboardTextStreamResponse) ProtoReflect

func (*KeyboardTextStreamResponse) Reset

func (x *KeyboardTextStreamResponse) Reset()

func (*KeyboardTextStreamResponse) String

func (x *KeyboardTextStreamResponse) String() string

type Keyboard_KeyboardCharacterStreamClient

type Keyboard_KeyboardCharacterStreamClient interface {
	Recv() (*KeyboardCharacterStreamResponse, error)
	grpc.ClientStream
}

type Keyboard_KeyboardCharacterStreamServer

type Keyboard_KeyboardCharacterStreamServer interface {
	Send(*KeyboardCharacterStreamResponse) error
	grpc.ServerStream
}

type Keyboard_KeyboardHotkeyStreamClient

type Keyboard_KeyboardHotkeyStreamClient interface {
	Recv() (*KeyboardHotkeyStreamResponse, error)
	grpc.ClientStream
}

type Keyboard_KeyboardHotkeyStreamServer

type Keyboard_KeyboardHotkeyStreamServer interface {
	Send(*KeyboardHotkeyStreamResponse) error
	grpc.ServerStream
}

type Keyboard_KeyboardTextStreamClient

type Keyboard_KeyboardTextStreamClient interface {
	Recv() (*KeyboardTextStreamResponse, error)
	grpc.ClientStream
}

type Keyboard_KeyboardTextStreamServer

type Keyboard_KeyboardTextStreamServer interface {
	Send(*KeyboardTextStreamResponse) error
	grpc.ServerStream
}

type LoopClient

type LoopClient interface {
	// start the loop
	LoopStart(ctx context.Context, in *LoopStartRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	// stop the loop
	LoopStop(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*emptypb.Empty, error)
}

LoopClient is the client API for Loop service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewLoopClient

func NewLoopClient(cc grpc.ClientConnInterface) LoopClient

type LoopServer

type LoopServer interface {
	// start the loop
	LoopStart(context.Context, *LoopStartRequest) (*emptypb.Empty, error)
	// stop the loop
	LoopStop(context.Context, *emptypb.Empty) (*emptypb.Empty, error)
}

LoopServer is the server API for Loop service.

type LoopStartRequest

type LoopStartRequest struct {
	Session      *Session      `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	ServiceHosts *ServiceHosts `protobuf:"bytes,2,opt,name=serviceHosts,proto3" json:"serviceHosts,omitempty"`
	// contains filtered or unexported fields
}

func (*LoopStartRequest) Descriptor deprecated

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

Deprecated: Use LoopStartRequest.ProtoReflect.Descriptor instead.

func (*LoopStartRequest) GetServiceHosts

func (x *LoopStartRequest) GetServiceHosts() *ServiceHosts

func (*LoopStartRequest) GetSession

func (x *LoopStartRequest) GetSession() *Session

func (*LoopStartRequest) ProtoMessage

func (*LoopStartRequest) ProtoMessage()

func (*LoopStartRequest) ProtoReflect

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

func (*LoopStartRequest) Reset

func (x *LoopStartRequest) Reset()

func (*LoopStartRequest) String

func (x *LoopStartRequest) String() string

type NetworkClient

type NetworkClient interface {
	HTTPRequest(ctx context.Context, in *HTTPRequestMsg, opts ...grpc.CallOption) (*HTTPResponseMsg, error)
}

NetworkClient is the client API for Network service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewNetworkClient

func NewNetworkClient(cc grpc.ClientConnInterface) NetworkClient

type NetworkServer

type NetworkServer interface {
	HTTPRequest(context.Context, *HTTPRequestMsg) (*HTTPResponseMsg, error)
}

NetworkServer is the server API for Network service.

type ProcessAction

type ProcessAction int32
const (
	ProcessAction_PROCESS_ACTION_UNKNOWN ProcessAction = 0
	ProcessAction_PROCESS_ACTION_STARTED ProcessAction = 1
	ProcessAction_PROCESS_ACTION_STOPPED ProcessAction = 2
)

func (ProcessAction) Descriptor

func (ProcessAction) Enum

func (x ProcessAction) Enum() *ProcessAction

func (ProcessAction) EnumDescriptor deprecated

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

Deprecated: Use ProcessAction.Descriptor instead.

func (ProcessAction) Number

func (ProcessAction) String

func (x ProcessAction) String() string

func (ProcessAction) Type

type ProcessClient

type ProcessClient interface {
	// stream updates to processes as they happen
	ProcessStateStream(ctx context.Context, in *ProcessStateStreamRequest, opts ...grpc.CallOption) (Process_ProcessStateStreamClient, error)
	// get a list of all processes
	ProcessState(ctx context.Context, in *ProcessStateRequest, opts ...grpc.CallOption) (*ProcessStateResponse, error)
}

ProcessClient is the client API for Process service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewProcessClient

func NewProcessClient(cc grpc.ClientConnInterface) ProcessClient

type ProcessInfo

type ProcessInfo struct {
	Pid       int32  `protobuf:"varint,1,opt,name=pid,proto3" json:"pid,omitempty"`
	Command   string `protobuf:"bytes,2,opt,name=command,proto3" json:"command,omitempty"`
	Arguments string `protobuf:"bytes,3,opt,name=arguments,proto3" json:"arguments,omitempty"`
	// contains filtered or unexported fields
}

func (*ProcessInfo) Descriptor deprecated

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

Deprecated: Use ProcessInfo.ProtoReflect.Descriptor instead.

func (*ProcessInfo) GetArguments

func (x *ProcessInfo) GetArguments() string

func (*ProcessInfo) GetCommand

func (x *ProcessInfo) GetCommand() string

func (*ProcessInfo) GetPid

func (x *ProcessInfo) GetPid() int32

func (*ProcessInfo) ProtoMessage

func (*ProcessInfo) ProtoMessage()

func (*ProcessInfo) ProtoReflect

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

func (*ProcessInfo) Reset

func (x *ProcessInfo) Reset()

func (*ProcessInfo) String

func (x *ProcessInfo) String() string

type ProcessServer

type ProcessServer interface {
	// stream updates to processes as they happen
	ProcessStateStream(*ProcessStateStreamRequest, Process_ProcessStateStreamServer) error
	// get a list of all processes
	ProcessState(context.Context, *ProcessStateRequest) (*ProcessStateResponse, error)
}

ProcessServer is the server API for Process service.

type ProcessStateRequest

type ProcessStateRequest struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	// contains filtered or unexported fields
}

func (*ProcessStateRequest) Descriptor deprecated

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

Deprecated: Use ProcessStateRequest.ProtoReflect.Descriptor instead.

func (*ProcessStateRequest) GetSession

func (x *ProcessStateRequest) GetSession() *Session

func (*ProcessStateRequest) ProtoMessage

func (*ProcessStateRequest) ProtoMessage()

func (*ProcessStateRequest) ProtoReflect

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

func (*ProcessStateRequest) Reset

func (x *ProcessStateRequest) Reset()

func (*ProcessStateRequest) String

func (x *ProcessStateRequest) String() string

type ProcessStateResponse

type ProcessStateResponse struct {
	Processes []*ProcessInfo `protobuf:"bytes,1,rep,name=processes,proto3" json:"processes,omitempty"`
	// contains filtered or unexported fields
}

func (*ProcessStateResponse) Descriptor deprecated

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

Deprecated: Use ProcessStateResponse.ProtoReflect.Descriptor instead.

func (*ProcessStateResponse) GetProcesses

func (x *ProcessStateResponse) GetProcesses() []*ProcessInfo

func (*ProcessStateResponse) ProtoMessage

func (*ProcessStateResponse) ProtoMessage()

func (*ProcessStateResponse) ProtoReflect

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

func (*ProcessStateResponse) Reset

func (x *ProcessStateResponse) Reset()

func (*ProcessStateResponse) String

func (x *ProcessStateResponse) String() string

type ProcessStateStreamRequest

type ProcessStateStreamRequest struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	// contains filtered or unexported fields
}

func (*ProcessStateStreamRequest) Descriptor deprecated

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

Deprecated: Use ProcessStateStreamRequest.ProtoReflect.Descriptor instead.

func (*ProcessStateStreamRequest) GetSession

func (x *ProcessStateStreamRequest) GetSession() *Session

func (*ProcessStateStreamRequest) ProtoMessage

func (*ProcessStateStreamRequest) ProtoMessage()

func (*ProcessStateStreamRequest) ProtoReflect

func (*ProcessStateStreamRequest) Reset

func (x *ProcessStateStreamRequest) Reset()

func (*ProcessStateStreamRequest) String

func (x *ProcessStateStreamRequest) String() string

type ProcessStateStreamResponse

type ProcessStateStreamResponse struct {
	Process *ProcessInfo  `protobuf:"bytes,1,opt,name=process,proto3" json:"process,omitempty"`
	Action  ProcessAction `protobuf:"varint,2,opt,name=action,proto3,enum=proto.ProcessAction" json:"action,omitempty"`
	Error   string        `protobuf:"bytes,15,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*ProcessStateStreamResponse) Descriptor deprecated

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

Deprecated: Use ProcessStateStreamResponse.ProtoReflect.Descriptor instead.

func (*ProcessStateStreamResponse) GetAction

func (*ProcessStateStreamResponse) GetError

func (x *ProcessStateStreamResponse) GetError() string

func (*ProcessStateStreamResponse) GetProcess

func (x *ProcessStateStreamResponse) GetProcess() *ProcessInfo

func (*ProcessStateStreamResponse) ProtoMessage

func (*ProcessStateStreamResponse) ProtoMessage()

func (*ProcessStateStreamResponse) ProtoReflect

func (*ProcessStateStreamResponse) Reset

func (x *ProcessStateStreamResponse) Reset()

func (*ProcessStateStreamResponse) String

func (x *ProcessStateStreamResponse) String() string

type Process_ProcessStateStreamClient

type Process_ProcessStateStreamClient interface {
	Recv() (*ProcessStateStreamResponse, error)
	grpc.ClientStream
}

type Process_ProcessStateStreamServer

type Process_ProcessStateStreamServer interface {
	Send(*ProcessStateStreamResponse) error
	grpc.ServerStream
}

type SearchbarStreamRequest

type SearchbarStreamRequest struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	// contains filtered or unexported fields
}

func (*SearchbarStreamRequest) Descriptor deprecated

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

Deprecated: Use SearchbarStreamRequest.ProtoReflect.Descriptor instead.

func (*SearchbarStreamRequest) GetSession

func (x *SearchbarStreamRequest) GetSession() *Session

func (*SearchbarStreamRequest) ProtoMessage

func (*SearchbarStreamRequest) ProtoMessage()

func (*SearchbarStreamRequest) ProtoReflect

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

func (*SearchbarStreamRequest) Reset

func (x *SearchbarStreamRequest) Reset()

func (*SearchbarStreamRequest) String

func (x *SearchbarStreamRequest) String() string

type SearchbarStreamResponse

type SearchbarStreamResponse struct {
	Text  string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
	Error string `protobuf:"bytes,15,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*SearchbarStreamResponse) Descriptor deprecated

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

Deprecated: Use SearchbarStreamResponse.ProtoReflect.Descriptor instead.

func (*SearchbarStreamResponse) GetError

func (x *SearchbarStreamResponse) GetError() string

func (*SearchbarStreamResponse) GetText

func (x *SearchbarStreamResponse) GetText() string

func (*SearchbarStreamResponse) ProtoMessage

func (*SearchbarStreamResponse) ProtoMessage()

func (*SearchbarStreamResponse) ProtoReflect

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

func (*SearchbarStreamResponse) Reset

func (x *SearchbarStreamResponse) Reset()

func (*SearchbarStreamResponse) String

func (x *SearchbarStreamResponse) String() string

type ServiceHosts

type ServiceHosts struct {
	HostBrokerId uint32 `protobuf:"varint,1,opt,name=hostBrokerId,proto3" json:"hostBrokerId,omitempty"`
	// contains filtered or unexported fields
}

func (*ServiceHosts) Descriptor deprecated

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

Deprecated: Use ServiceHosts.ProtoReflect.Descriptor instead.

func (*ServiceHosts) GetHostBrokerId

func (x *ServiceHosts) GetHostBrokerId() uint32

func (*ServiceHosts) ProtoMessage

func (*ServiceHosts) ProtoMessage()

func (*ServiceHosts) ProtoReflect

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

func (*ServiceHosts) Reset

func (x *ServiceHosts) Reset()

func (*ServiceHosts) String

func (x *ServiceHosts) String() string

type Session

type Session struct {
	LoopID string `protobuf:"bytes,1,opt,name=loopID,proto3" json:"loopID,omitempty"`
	Token  string `protobuf:"bytes,2,opt,name=token,proto3" json:"token,omitempty"`
	// contains filtered or unexported fields
}

func (*Session) Descriptor deprecated

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

Deprecated: Use Session.ProtoReflect.Descriptor instead.

func (*Session) GetLoopID

func (x *Session) GetLoopID() string

func (*Session) GetToken

func (x *Session) GetToken() string

func (*Session) ProtoMessage

func (*Session) ProtoMessage()

func (*Session) ProtoReflect

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

func (*Session) Reset

func (x *Session) Reset()

func (*Session) String

func (x *Session) String() string

type UIClient

type UIClient interface {
	// Event is streamed whenever user hits enter.
	GlobalSearchStream(ctx context.Context, in *GlobalSearchStreamRequest, opts ...grpc.CallOption) (UI_GlobalSearchStreamClient, error)
	// Event is streamed whenever user hits enter.
	SearchbarStream(ctx context.Context, in *SearchbarStreamRequest, opts ...grpc.CallOption) (UI_SearchbarStreamClient, error)
}

UIClient is the client API for UI service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewUIClient

func NewUIClient(cc grpc.ClientConnInterface) UIClient

type UIServer

type UIServer interface {
	// Event is streamed whenever user hits enter.
	GlobalSearchStream(*GlobalSearchStreamRequest, UI_GlobalSearchStreamServer) error
	// Event is streamed whenever user hits enter.
	SearchbarStream(*SearchbarStreamRequest, UI_SearchbarStreamServer) error
}

UIServer is the server API for UI service.

type UI_GlobalSearchStreamClient

type UI_GlobalSearchStreamClient interface {
	Recv() (*GlobalSearchStreamResponse, error)
	grpc.ClientStream
}

type UI_GlobalSearchStreamServer

type UI_GlobalSearchStreamServer interface {
	Send(*GlobalSearchStreamResponse) error
	grpc.ServerStream
}

type UI_SearchbarStreamClient

type UI_SearchbarStreamClient interface {
	Recv() (*SearchbarStreamResponse, error)
	grpc.ClientStream
}

type UI_SearchbarStreamServer

type UI_SearchbarStreamServer interface {
	Send(*SearchbarStreamResponse) error
	grpc.ServerStream
}

type UnimplementedBrowserServer

type UnimplementedBrowserServer struct {
}

UnimplementedBrowserServer can be embedded to have forward compatible implementations.

func (*UnimplementedBrowserServer) BrowserActiveURL

type UnimplementedClipboardServer

type UnimplementedClipboardServer struct {
}

UnimplementedClipboardServer can be embedded to have forward compatible implementations.

func (*UnimplementedClipboardServer) ClipboardRead

func (*UnimplementedClipboardServer) ClipboardWrite

type UnimplementedCursorServer

type UnimplementedCursorServer struct {
}

UnimplementedCursorServer can be embedded to have forward compatible implementations.

func (*UnimplementedCursorServer) CursorPosition

type UnimplementedFilesystemServer

type UnimplementedFilesystemServer struct {
}

UnimplementedFilesystemServer can be embedded to have forward compatible implementations.

func (*UnimplementedFilesystemServer) FilesystemCopy

func (*UnimplementedFilesystemServer) FilesystemDir

func (*UnimplementedFilesystemServer) FilesystemFileStream

func (*UnimplementedFilesystemServer) FilesystemMakeDir

func (*UnimplementedFilesystemServer) FilesystemMove

func (*UnimplementedFilesystemServer) FilesystemRemove

type UnimplementedHoverServer

type UnimplementedHoverServer struct {
}

UnimplementedHoverServer can be embedded to have forward compatible implementations.

func (*UnimplementedHoverServer) HoverRead

func (*UnimplementedHoverServer) HoverReadStream

type UnimplementedKeyboardServer

type UnimplementedKeyboardServer struct {
}

UnimplementedKeyboardServer can be embedded to have forward compatible implementations.

type UnimplementedLoopServer

type UnimplementedLoopServer struct {
}

UnimplementedLoopServer can be embedded to have forward compatible implementations.

func (*UnimplementedLoopServer) LoopStart

func (*UnimplementedLoopServer) LoopStop

type UnimplementedNetworkServer

type UnimplementedNetworkServer struct {
}

UnimplementedNetworkServer can be embedded to have forward compatible implementations.

func (*UnimplementedNetworkServer) HTTPRequest

type UnimplementedProcessServer

type UnimplementedProcessServer struct {
}

UnimplementedProcessServer can be embedded to have forward compatible implementations.

func (*UnimplementedProcessServer) ProcessState

func (*UnimplementedProcessServer) ProcessStateStream

type UnimplementedUIServer

type UnimplementedUIServer struct {
}

UnimplementedUIServer can be embedded to have forward compatible implementations.

func (*UnimplementedUIServer) GlobalSearchStream

func (*UnimplementedUIServer) SearchbarStream

type UnimplementedVaultServer

type UnimplementedVaultServer struct {
}

UnimplementedVaultServer can be embedded to have forward compatible implementations.

func (*UnimplementedVaultServer) VaultDelete

func (*UnimplementedVaultServer) VaultExists

func (*UnimplementedVaultServer) VaultRead

func (*UnimplementedVaultServer) VaultWrite

type UnimplementedWhisperServer

type UnimplementedWhisperServer struct {
}

UnimplementedWhisperServer can be embedded to have forward compatible implementations.

func (*UnimplementedWhisperServer) WhisperConfirm

func (*UnimplementedWhisperServer) WhisperForm

func (*UnimplementedWhisperServer) WhisperList

func (*UnimplementedWhisperServer) WhisperMarkdown

type UnimplementedWindowServer

type UnimplementedWindowServer struct {
}

UnimplementedWindowServer can be embedded to have forward compatible implementations.

func (*UnimplementedWindowServer) WindowActiveWindow

func (*UnimplementedWindowServer) WindowState

func (*UnimplementedWindowServer) WindowStateStream

type VaultClient

type VaultClient interface {
	// Delete the value of a specific key in the vault
	VaultDelete(ctx context.Context, in *VaultDeleteRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	// Check in the vault to determine if a key has a value
	VaultExists(ctx context.Context, in *VaultExistsRequest, opts ...grpc.CallOption) (*VaultExistsResponse, error)
	// Read the value of a specific vault key
	VaultRead(ctx context.Context, in *VaultReadRequest, opts ...grpc.CallOption) (*VaultReadResponse, error)
	// Write the value of a key to the vault
	VaultWrite(ctx context.Context, in *VaultWriteRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
}

VaultClient is the client API for Vault service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewVaultClient

func NewVaultClient(cc grpc.ClientConnInterface) VaultClient

type VaultDeleteRequest

type VaultDeleteRequest struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	Key     string   `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	// contains filtered or unexported fields
}

func (*VaultDeleteRequest) Descriptor deprecated

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

Deprecated: Use VaultDeleteRequest.ProtoReflect.Descriptor instead.

func (*VaultDeleteRequest) GetKey

func (x *VaultDeleteRequest) GetKey() string

func (*VaultDeleteRequest) GetSession

func (x *VaultDeleteRequest) GetSession() *Session

func (*VaultDeleteRequest) ProtoMessage

func (*VaultDeleteRequest) ProtoMessage()

func (*VaultDeleteRequest) ProtoReflect

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

func (*VaultDeleteRequest) Reset

func (x *VaultDeleteRequest) Reset()

func (*VaultDeleteRequest) String

func (x *VaultDeleteRequest) String() string

type VaultExistsRequest

type VaultExistsRequest struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	Key     string   `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	// contains filtered or unexported fields
}

func (*VaultExistsRequest) Descriptor deprecated

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

Deprecated: Use VaultExistsRequest.ProtoReflect.Descriptor instead.

func (*VaultExistsRequest) GetKey

func (x *VaultExistsRequest) GetKey() string

func (*VaultExistsRequest) GetSession

func (x *VaultExistsRequest) GetSession() *Session

func (*VaultExistsRequest) ProtoMessage

func (*VaultExistsRequest) ProtoMessage()

func (*VaultExistsRequest) ProtoReflect

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

func (*VaultExistsRequest) Reset

func (x *VaultExistsRequest) Reset()

func (*VaultExistsRequest) String

func (x *VaultExistsRequest) String() string

type VaultExistsResponse

type VaultExistsResponse struct {
	Exists bool `protobuf:"varint,1,opt,name=exists,proto3" json:"exists,omitempty"`
	// contains filtered or unexported fields
}

func (*VaultExistsResponse) Descriptor deprecated

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

Deprecated: Use VaultExistsResponse.ProtoReflect.Descriptor instead.

func (*VaultExistsResponse) GetExists

func (x *VaultExistsResponse) GetExists() bool

func (*VaultExistsResponse) ProtoMessage

func (*VaultExistsResponse) ProtoMessage()

func (*VaultExistsResponse) ProtoReflect

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

func (*VaultExistsResponse) Reset

func (x *VaultExistsResponse) Reset()

func (*VaultExistsResponse) String

func (x *VaultExistsResponse) String() string

type VaultReadRequest

type VaultReadRequest struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	Key     string   `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	// contains filtered or unexported fields
}

func (*VaultReadRequest) Descriptor deprecated

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

Deprecated: Use VaultReadRequest.ProtoReflect.Descriptor instead.

func (*VaultReadRequest) GetKey

func (x *VaultReadRequest) GetKey() string

func (*VaultReadRequest) GetSession

func (x *VaultReadRequest) GetSession() *Session

func (*VaultReadRequest) ProtoMessage

func (*VaultReadRequest) ProtoMessage()

func (*VaultReadRequest) ProtoReflect

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

func (*VaultReadRequest) Reset

func (x *VaultReadRequest) Reset()

func (*VaultReadRequest) String

func (x *VaultReadRequest) String() string

type VaultReadResponse

type VaultReadResponse struct {
	Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*VaultReadResponse) Descriptor deprecated

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

Deprecated: Use VaultReadResponse.ProtoReflect.Descriptor instead.

func (*VaultReadResponse) GetValue

func (x *VaultReadResponse) GetValue() string

func (*VaultReadResponse) ProtoMessage

func (*VaultReadResponse) ProtoMessage()

func (*VaultReadResponse) ProtoReflect

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

func (*VaultReadResponse) Reset

func (x *VaultReadResponse) Reset()

func (*VaultReadResponse) String

func (x *VaultReadResponse) String() string

type VaultServer

type VaultServer interface {
	// Delete the value of a specific key in the vault
	VaultDelete(context.Context, *VaultDeleteRequest) (*emptypb.Empty, error)
	// Check in the vault to determine if a key has a value
	VaultExists(context.Context, *VaultExistsRequest) (*VaultExistsResponse, error)
	// Read the value of a specific vault key
	VaultRead(context.Context, *VaultReadRequest) (*VaultReadResponse, error)
	// Write the value of a key to the vault
	VaultWrite(context.Context, *VaultWriteRequest) (*emptypb.Empty, error)
}

VaultServer is the server API for Vault service.

type VaultWriteRequest

type VaultWriteRequest struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	Key     string   `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	Value   string   `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*VaultWriteRequest) Descriptor deprecated

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

Deprecated: Use VaultWriteRequest.ProtoReflect.Descriptor instead.

func (*VaultWriteRequest) GetKey

func (x *VaultWriteRequest) GetKey() string

func (*VaultWriteRequest) GetSession

func (x *VaultWriteRequest) GetSession() *Session

func (*VaultWriteRequest) GetValue

func (x *VaultWriteRequest) GetValue() string

func (*VaultWriteRequest) ProtoMessage

func (*VaultWriteRequest) ProtoMessage()

func (*VaultWriteRequest) ProtoReflect

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

func (*VaultWriteRequest) Reset

func (x *VaultWriteRequest) Reset()

func (*VaultWriteRequest) String

func (x *VaultWriteRequest) String() string

type WhisperClient

type WhisperClient interface {
	// Send a markdown whisper
	WhisperMarkdown(ctx context.Context, in *WhisperMarkdownRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	// Send a confirm whisper
	WhisperConfirm(ctx context.Context, in *WhisperConfirmRequest, opts ...grpc.CallOption) (*WhisperConfirmResponse, error)
	// Send a disambiguation whisper
	WhisperDisambiguation(ctx context.Context, in *WhisperDisambiguationRequest, opts ...grpc.CallOption) (Whisper_WhisperDisambiguationClient, error)
	// Send a form whisper
	WhisperForm(ctx context.Context, in *WhisperFormRequest, opts ...grpc.CallOption) (Whisper_WhisperFormClient, error)
	// Send a list whisper
	WhisperList(ctx context.Context, in *WhisperListRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
}

WhisperClient is the client API for Whisper service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewWhisperClient

func NewWhisperClient(cc grpc.ClientConnInterface) WhisperClient

type WhisperConfirmRequest

type WhisperConfirmRequest struct {
	Session      *Session     `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	Meta         *WhisperMeta `protobuf:"bytes,2,opt,name=meta,proto3" json:"meta,omitempty"`
	Markdown     string       `protobuf:"bytes,3,opt,name=markdown,proto3" json:"markdown,omitempty"`
	RejectLabel  string       `protobuf:"bytes,4,opt,name=rejectLabel,proto3" json:"rejectLabel,omitempty"`
	ResolveLabel string       `protobuf:"bytes,5,opt,name=resolveLabel,proto3" json:"resolveLabel,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperConfirmRequest) Descriptor deprecated

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

Deprecated: Use WhisperConfirmRequest.ProtoReflect.Descriptor instead.

func (*WhisperConfirmRequest) GetMarkdown

func (x *WhisperConfirmRequest) GetMarkdown() string

func (*WhisperConfirmRequest) GetMeta

func (x *WhisperConfirmRequest) GetMeta() *WhisperMeta

func (*WhisperConfirmRequest) GetRejectLabel

func (x *WhisperConfirmRequest) GetRejectLabel() string

func (*WhisperConfirmRequest) GetResolveLabel

func (x *WhisperConfirmRequest) GetResolveLabel() string

func (*WhisperConfirmRequest) GetSession

func (x *WhisperConfirmRequest) GetSession() *Session

func (*WhisperConfirmRequest) ProtoMessage

func (*WhisperConfirmRequest) ProtoMessage()

func (*WhisperConfirmRequest) ProtoReflect

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

func (*WhisperConfirmRequest) Reset

func (x *WhisperConfirmRequest) Reset()

func (*WhisperConfirmRequest) String

func (x *WhisperConfirmRequest) String() string

type WhisperConfirmResponse

type WhisperConfirmResponse struct {
	Response bool `protobuf:"varint,1,opt,name=response,proto3" json:"response,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperConfirmResponse) Descriptor deprecated

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

Deprecated: Use WhisperConfirmResponse.ProtoReflect.Descriptor instead.

func (*WhisperConfirmResponse) GetResponse

func (x *WhisperConfirmResponse) GetResponse() bool

func (*WhisperConfirmResponse) ProtoMessage

func (*WhisperConfirmResponse) ProtoMessage()

func (*WhisperConfirmResponse) ProtoReflect

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

func (*WhisperConfirmResponse) Reset

func (x *WhisperConfirmResponse) Reset()

func (*WhisperConfirmResponse) String

func (x *WhisperConfirmResponse) String() string

type WhisperDisambiguationElement

type WhisperDisambiguationElement struct {
	Order uint32 `protobuf:"varint,1,opt,name=order,proto3" json:"order,omitempty"`
	// Types that are assignable to ElementOneof:
	//	*WhisperDisambiguationElement_Option_
	//	*WhisperDisambiguationElement_Text_
	ElementOneof isWhisperDisambiguationElement_ElementOneof `protobuf_oneof:"element_oneof"`
	// contains filtered or unexported fields
}

func (*WhisperDisambiguationElement) Descriptor deprecated

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

Deprecated: Use WhisperDisambiguationElement.ProtoReflect.Descriptor instead.

func (*WhisperDisambiguationElement) GetElementOneof

func (m *WhisperDisambiguationElement) GetElementOneof() isWhisperDisambiguationElement_ElementOneof

func (*WhisperDisambiguationElement) GetOption

func (*WhisperDisambiguationElement) GetOrder

func (x *WhisperDisambiguationElement) GetOrder() uint32

func (*WhisperDisambiguationElement) GetText

func (*WhisperDisambiguationElement) ProtoMessage

func (*WhisperDisambiguationElement) ProtoMessage()

func (*WhisperDisambiguationElement) ProtoReflect

func (*WhisperDisambiguationElement) Reset

func (x *WhisperDisambiguationElement) Reset()

func (*WhisperDisambiguationElement) String

type WhisperDisambiguationElement_Option

type WhisperDisambiguationElement_Option struct {
	Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperDisambiguationElement_Option) Descriptor deprecated

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

Deprecated: Use WhisperDisambiguationElement_Option.ProtoReflect.Descriptor instead.

func (*WhisperDisambiguationElement_Option) GetLabel

func (*WhisperDisambiguationElement_Option) ProtoMessage

func (*WhisperDisambiguationElement_Option) ProtoMessage()

func (*WhisperDisambiguationElement_Option) ProtoReflect

func (*WhisperDisambiguationElement_Option) Reset

func (*WhisperDisambiguationElement_Option) String

type WhisperDisambiguationElement_Option_

type WhisperDisambiguationElement_Option_ struct {
	Option *WhisperDisambiguationElement_Option `protobuf:"bytes,2,opt,name=option,proto3,oneof"`
}

type WhisperDisambiguationElement_Text

type WhisperDisambiguationElement_Text struct {
	Body string `protobuf:"bytes,2,opt,name=body,proto3" json:"body,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperDisambiguationElement_Text) Descriptor deprecated

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

Deprecated: Use WhisperDisambiguationElement_Text.ProtoReflect.Descriptor instead.

func (*WhisperDisambiguationElement_Text) GetBody

func (*WhisperDisambiguationElement_Text) ProtoMessage

func (*WhisperDisambiguationElement_Text) ProtoMessage()

func (*WhisperDisambiguationElement_Text) ProtoReflect

func (*WhisperDisambiguationElement_Text) Reset

func (*WhisperDisambiguationElement_Text) String

type WhisperDisambiguationElement_Text_

type WhisperDisambiguationElement_Text_ struct {
	Text *WhisperDisambiguationElement_Text `protobuf:"bytes,3,opt,name=text,proto3,oneof"`
}

type WhisperDisambiguationRequest

type WhisperDisambiguationRequest struct {
	Session  *Session                                 `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	Meta     *WhisperMeta                             `protobuf:"bytes,2,opt,name=meta,proto3" json:"meta,omitempty"`
	Elements map[string]*WhisperDisambiguationElement `` /* 157-byte string literal not displayed */
	Markdown string                                   `protobuf:"bytes,4,opt,name=markdown,proto3" json:"markdown,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperDisambiguationRequest) Descriptor deprecated

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

Deprecated: Use WhisperDisambiguationRequest.ProtoReflect.Descriptor instead.

func (*WhisperDisambiguationRequest) GetElements

func (*WhisperDisambiguationRequest) GetMarkdown

func (x *WhisperDisambiguationRequest) GetMarkdown() string

func (*WhisperDisambiguationRequest) GetMeta

func (*WhisperDisambiguationRequest) GetSession

func (x *WhisperDisambiguationRequest) GetSession() *Session

func (*WhisperDisambiguationRequest) ProtoMessage

func (*WhisperDisambiguationRequest) ProtoMessage()

func (*WhisperDisambiguationRequest) ProtoReflect

func (*WhisperDisambiguationRequest) Reset

func (x *WhisperDisambiguationRequest) Reset()

func (*WhisperDisambiguationRequest) String

type WhisperDisambiguationResponse

type WhisperDisambiguationResponse struct {
	Response bool `protobuf:"varint,1,opt,name=response,proto3" json:"response,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperDisambiguationResponse) Descriptor deprecated

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

Deprecated: Use WhisperDisambiguationResponse.ProtoReflect.Descriptor instead.

func (*WhisperDisambiguationResponse) GetResponse

func (x *WhisperDisambiguationResponse) GetResponse() bool

func (*WhisperDisambiguationResponse) ProtoMessage

func (*WhisperDisambiguationResponse) ProtoMessage()

func (*WhisperDisambiguationResponse) ProtoReflect

func (*WhisperDisambiguationResponse) Reset

func (x *WhisperDisambiguationResponse) Reset()

func (*WhisperDisambiguationResponse) String

type WhisperDisambiguationStreamResponse

type WhisperDisambiguationStreamResponse struct {
	Key   string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Error string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperDisambiguationStreamResponse) Descriptor deprecated

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

Deprecated: Use WhisperDisambiguationStreamResponse.ProtoReflect.Descriptor instead.

func (*WhisperDisambiguationStreamResponse) GetError

func (*WhisperDisambiguationStreamResponse) GetKey

func (*WhisperDisambiguationStreamResponse) ProtoMessage

func (*WhisperDisambiguationStreamResponse) ProtoMessage()

func (*WhisperDisambiguationStreamResponse) ProtoReflect

func (*WhisperDisambiguationStreamResponse) Reset

func (*WhisperDisambiguationStreamResponse) String

type WhisperFormInput

type WhisperFormInput struct {

	// Types that are assignable to InputOneof:
	//	*WhisperFormInput_Checkbox_
	//	*WhisperFormInput_Email_
	//	*WhisperFormInput_Markdown_
	//	*WhisperFormInput_Number_
	//	*WhisperFormInput_Password_
	//	*WhisperFormInput_Radio_
	//	*WhisperFormInput_Select_
	//	*WhisperFormInput_Tel_
	//	*WhisperFormInput_Text_
	//	*WhisperFormInput_Time_
	InputOneof isWhisperFormInput_InputOneof `protobuf_oneof:"input_oneof"`
	// contains filtered or unexported fields
}

func (*WhisperFormInput) Descriptor deprecated

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

Deprecated: Use WhisperFormInput.ProtoReflect.Descriptor instead.

func (*WhisperFormInput) GetCheckbox

func (x *WhisperFormInput) GetCheckbox() *WhisperFormInput_Checkbox

func (*WhisperFormInput) GetEmail

func (*WhisperFormInput) GetInputOneof

func (m *WhisperFormInput) GetInputOneof() isWhisperFormInput_InputOneof

func (*WhisperFormInput) GetMarkdown

func (x *WhisperFormInput) GetMarkdown() *WhisperFormInput_Markdown

func (*WhisperFormInput) GetNumber

func (x *WhisperFormInput) GetNumber() *WhisperFormInput_Number

func (*WhisperFormInput) GetPassword

func (x *WhisperFormInput) GetPassword() *WhisperFormInput_Password

func (*WhisperFormInput) GetRadio

func (*WhisperFormInput) GetSelect

func (x *WhisperFormInput) GetSelect() *WhisperFormInput_Select

func (*WhisperFormInput) GetTel

func (*WhisperFormInput) GetText

func (*WhisperFormInput) GetTime

func (*WhisperFormInput) ProtoMessage

func (*WhisperFormInput) ProtoMessage()

func (*WhisperFormInput) ProtoReflect

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

func (*WhisperFormInput) Reset

func (x *WhisperFormInput) Reset()

func (*WhisperFormInput) String

func (x *WhisperFormInput) String() string

type WhisperFormInput_Checkbox

type WhisperFormInput_Checkbox struct {
	Label   string `protobuf:"bytes,1,opt,name=label,proto3" json:"label,omitempty"`
	Tooltip string `protobuf:"bytes,2,opt,name=tooltip,proto3" json:"tooltip,omitempty"`
	Value   bool   `protobuf:"varint,3,opt,name=value,proto3" json:"value,omitempty"`
	Order   uint32 `protobuf:"varint,4,opt,name=order,proto3" json:"order,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperFormInput_Checkbox) Descriptor deprecated

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

Deprecated: Use WhisperFormInput_Checkbox.ProtoReflect.Descriptor instead.

func (*WhisperFormInput_Checkbox) GetLabel

func (x *WhisperFormInput_Checkbox) GetLabel() string

func (*WhisperFormInput_Checkbox) GetOrder

func (x *WhisperFormInput_Checkbox) GetOrder() uint32

func (*WhisperFormInput_Checkbox) GetTooltip

func (x *WhisperFormInput_Checkbox) GetTooltip() string

func (*WhisperFormInput_Checkbox) GetValue

func (x *WhisperFormInput_Checkbox) GetValue() bool

func (*WhisperFormInput_Checkbox) ProtoMessage

func (*WhisperFormInput_Checkbox) ProtoMessage()

func (*WhisperFormInput_Checkbox) ProtoReflect

func (*WhisperFormInput_Checkbox) Reset

func (x *WhisperFormInput_Checkbox) Reset()

func (*WhisperFormInput_Checkbox) String

func (x *WhisperFormInput_Checkbox) String() string

type WhisperFormInput_Checkbox_

type WhisperFormInput_Checkbox_ struct {
	Checkbox *WhisperFormInput_Checkbox `protobuf:"bytes,1,opt,name=checkbox,proto3,oneof"`
}

type WhisperFormInput_Email

type WhisperFormInput_Email struct {
	Label   string `protobuf:"bytes,1,opt,name=label,proto3" json:"label,omitempty"`
	Tooltip string `protobuf:"bytes,2,opt,name=tooltip,proto3" json:"tooltip,omitempty"`
	Value   string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
	Order   uint32 `protobuf:"varint,4,opt,name=order,proto3" json:"order,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperFormInput_Email) Descriptor deprecated

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

Deprecated: Use WhisperFormInput_Email.ProtoReflect.Descriptor instead.

func (*WhisperFormInput_Email) GetLabel

func (x *WhisperFormInput_Email) GetLabel() string

func (*WhisperFormInput_Email) GetOrder

func (x *WhisperFormInput_Email) GetOrder() uint32

func (*WhisperFormInput_Email) GetTooltip

func (x *WhisperFormInput_Email) GetTooltip() string

func (*WhisperFormInput_Email) GetValue

func (x *WhisperFormInput_Email) GetValue() string

func (*WhisperFormInput_Email) ProtoMessage

func (*WhisperFormInput_Email) ProtoMessage()

func (*WhisperFormInput_Email) ProtoReflect

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

func (*WhisperFormInput_Email) Reset

func (x *WhisperFormInput_Email) Reset()

func (*WhisperFormInput_Email) String

func (x *WhisperFormInput_Email) String() string

type WhisperFormInput_Email_

type WhisperFormInput_Email_ struct {
	Email *WhisperFormInput_Email `protobuf:"bytes,2,opt,name=email,proto3,oneof"`
}

type WhisperFormInput_Markdown

type WhisperFormInput_Markdown struct {
	Label   string `protobuf:"bytes,1,opt,name=label,proto3" json:"label,omitempty"`
	Tooltip string `protobuf:"bytes,2,opt,name=tooltip,proto3" json:"tooltip,omitempty"`
	Value   string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
	Order   uint32 `protobuf:"varint,4,opt,name=order,proto3" json:"order,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperFormInput_Markdown) Descriptor deprecated

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

Deprecated: Use WhisperFormInput_Markdown.ProtoReflect.Descriptor instead.

func (*WhisperFormInput_Markdown) GetLabel

func (x *WhisperFormInput_Markdown) GetLabel() string

func (*WhisperFormInput_Markdown) GetOrder

func (x *WhisperFormInput_Markdown) GetOrder() uint32

func (*WhisperFormInput_Markdown) GetTooltip

func (x *WhisperFormInput_Markdown) GetTooltip() string

func (*WhisperFormInput_Markdown) GetValue

func (x *WhisperFormInput_Markdown) GetValue() string

func (*WhisperFormInput_Markdown) ProtoMessage

func (*WhisperFormInput_Markdown) ProtoMessage()

func (*WhisperFormInput_Markdown) ProtoReflect

func (*WhisperFormInput_Markdown) Reset

func (x *WhisperFormInput_Markdown) Reset()

func (*WhisperFormInput_Markdown) String

func (x *WhisperFormInput_Markdown) String() string

type WhisperFormInput_Markdown_

type WhisperFormInput_Markdown_ struct {
	Markdown *WhisperFormInput_Markdown `protobuf:"bytes,3,opt,name=markdown,proto3,oneof"`
}

type WhisperFormInput_Number

type WhisperFormInput_Number struct {
	Label   string  `protobuf:"bytes,1,opt,name=label,proto3" json:"label,omitempty"`
	Tooltip string  `protobuf:"bytes,2,opt,name=tooltip,proto3" json:"tooltip,omitempty"`
	Value   float32 `protobuf:"fixed32,3,opt,name=value,proto3" json:"value,omitempty"`
	Min     float32 `protobuf:"fixed32,4,opt,name=min,proto3" json:"min,omitempty"`
	Max     float32 `protobuf:"fixed32,5,opt,name=max,proto3" json:"max,omitempty"`
	Order   uint32  `protobuf:"varint,6,opt,name=order,proto3" json:"order,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperFormInput_Number) Descriptor deprecated

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

Deprecated: Use WhisperFormInput_Number.ProtoReflect.Descriptor instead.

func (*WhisperFormInput_Number) GetLabel

func (x *WhisperFormInput_Number) GetLabel() string

func (*WhisperFormInput_Number) GetMax

func (x *WhisperFormInput_Number) GetMax() float32

func (*WhisperFormInput_Number) GetMin

func (x *WhisperFormInput_Number) GetMin() float32

func (*WhisperFormInput_Number) GetOrder

func (x *WhisperFormInput_Number) GetOrder() uint32

func (*WhisperFormInput_Number) GetTooltip

func (x *WhisperFormInput_Number) GetTooltip() string

func (*WhisperFormInput_Number) GetValue

func (x *WhisperFormInput_Number) GetValue() float32

func (*WhisperFormInput_Number) ProtoMessage

func (*WhisperFormInput_Number) ProtoMessage()

func (*WhisperFormInput_Number) ProtoReflect

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

func (*WhisperFormInput_Number) Reset

func (x *WhisperFormInput_Number) Reset()

func (*WhisperFormInput_Number) String

func (x *WhisperFormInput_Number) String() string

type WhisperFormInput_Number_

type WhisperFormInput_Number_ struct {
	Number *WhisperFormInput_Number `protobuf:"bytes,4,opt,name=number,proto3,oneof"`
}

type WhisperFormInput_Password

type WhisperFormInput_Password struct {
	Label   string `protobuf:"bytes,1,opt,name=label,proto3" json:"label,omitempty"`
	Tooltip string `protobuf:"bytes,2,opt,name=tooltip,proto3" json:"tooltip,omitempty"`
	Order   uint32 `protobuf:"varint,3,opt,name=order,proto3" json:"order,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperFormInput_Password) Descriptor deprecated

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

Deprecated: Use WhisperFormInput_Password.ProtoReflect.Descriptor instead.

func (*WhisperFormInput_Password) GetLabel

func (x *WhisperFormInput_Password) GetLabel() string

func (*WhisperFormInput_Password) GetOrder

func (x *WhisperFormInput_Password) GetOrder() uint32

func (*WhisperFormInput_Password) GetTooltip

func (x *WhisperFormInput_Password) GetTooltip() string

func (*WhisperFormInput_Password) ProtoMessage

func (*WhisperFormInput_Password) ProtoMessage()

func (*WhisperFormInput_Password) ProtoReflect

func (*WhisperFormInput_Password) Reset

func (x *WhisperFormInput_Password) Reset()

func (*WhisperFormInput_Password) String

func (x *WhisperFormInput_Password) String() string

type WhisperFormInput_Password_

type WhisperFormInput_Password_ struct {
	Password *WhisperFormInput_Password `protobuf:"bytes,5,opt,name=password,proto3,oneof"`
}

type WhisperFormInput_Radio

type WhisperFormInput_Radio struct {
	Label   string   `protobuf:"bytes,1,opt,name=label,proto3" json:"label,omitempty"`
	Tooltip string   `protobuf:"bytes,2,opt,name=tooltip,proto3" json:"tooltip,omitempty"`
	Options []string `protobuf:"bytes,3,rep,name=options,proto3" json:"options,omitempty"`
	Value   string   `protobuf:"bytes,4,opt,name=value,proto3" json:"value,omitempty"`
	Order   uint32   `protobuf:"varint,5,opt,name=order,proto3" json:"order,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperFormInput_Radio) Descriptor deprecated

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

Deprecated: Use WhisperFormInput_Radio.ProtoReflect.Descriptor instead.

func (*WhisperFormInput_Radio) GetLabel

func (x *WhisperFormInput_Radio) GetLabel() string

func (*WhisperFormInput_Radio) GetOptions

func (x *WhisperFormInput_Radio) GetOptions() []string

func (*WhisperFormInput_Radio) GetOrder

func (x *WhisperFormInput_Radio) GetOrder() uint32

func (*WhisperFormInput_Radio) GetTooltip

func (x *WhisperFormInput_Radio) GetTooltip() string

func (*WhisperFormInput_Radio) GetValue

func (x *WhisperFormInput_Radio) GetValue() string

func (*WhisperFormInput_Radio) ProtoMessage

func (*WhisperFormInput_Radio) ProtoMessage()

func (*WhisperFormInput_Radio) ProtoReflect

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

func (*WhisperFormInput_Radio) Reset

func (x *WhisperFormInput_Radio) Reset()

func (*WhisperFormInput_Radio) String

func (x *WhisperFormInput_Radio) String() string

type WhisperFormInput_Radio_

type WhisperFormInput_Radio_ struct {
	Radio *WhisperFormInput_Radio `protobuf:"bytes,6,opt,name=radio,proto3,oneof"`
}

type WhisperFormInput_Select

type WhisperFormInput_Select struct {
	Label   string   `protobuf:"bytes,1,opt,name=label,proto3" json:"label,omitempty"`
	Tooltip string   `protobuf:"bytes,2,opt,name=tooltip,proto3" json:"tooltip,omitempty"`
	Options []string `protobuf:"bytes,3,rep,name=options,proto3" json:"options,omitempty"`
	Value   string   `protobuf:"bytes,4,opt,name=value,proto3" json:"value,omitempty"`
	Order   uint32   `protobuf:"varint,5,opt,name=order,proto3" json:"order,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperFormInput_Select) Descriptor deprecated

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

Deprecated: Use WhisperFormInput_Select.ProtoReflect.Descriptor instead.

func (*WhisperFormInput_Select) GetLabel

func (x *WhisperFormInput_Select) GetLabel() string

func (*WhisperFormInput_Select) GetOptions

func (x *WhisperFormInput_Select) GetOptions() []string

func (*WhisperFormInput_Select) GetOrder

func (x *WhisperFormInput_Select) GetOrder() uint32

func (*WhisperFormInput_Select) GetTooltip

func (x *WhisperFormInput_Select) GetTooltip() string

func (*WhisperFormInput_Select) GetValue

func (x *WhisperFormInput_Select) GetValue() string

func (*WhisperFormInput_Select) ProtoMessage

func (*WhisperFormInput_Select) ProtoMessage()

func (*WhisperFormInput_Select) ProtoReflect

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

func (*WhisperFormInput_Select) Reset

func (x *WhisperFormInput_Select) Reset()

func (*WhisperFormInput_Select) String

func (x *WhisperFormInput_Select) String() string

type WhisperFormInput_Select_

type WhisperFormInput_Select_ struct {
	Select *WhisperFormInput_Select `protobuf:"bytes,7,opt,name=select,proto3,oneof"`
}

type WhisperFormInput_Tel

type WhisperFormInput_Tel struct {
	Label   string `protobuf:"bytes,1,opt,name=label,proto3" json:"label,omitempty"`
	Tooltip string `protobuf:"bytes,2,opt,name=tooltip,proto3" json:"tooltip,omitempty"`
	Value   string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
	Pattern string `protobuf:"bytes,4,opt,name=pattern,proto3" json:"pattern,omitempty"`
	Order   uint32 `protobuf:"varint,5,opt,name=order,proto3" json:"order,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperFormInput_Tel) Descriptor deprecated

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

Deprecated: Use WhisperFormInput_Tel.ProtoReflect.Descriptor instead.

func (*WhisperFormInput_Tel) GetLabel

func (x *WhisperFormInput_Tel) GetLabel() string

func (*WhisperFormInput_Tel) GetOrder

func (x *WhisperFormInput_Tel) GetOrder() uint32

func (*WhisperFormInput_Tel) GetPattern

func (x *WhisperFormInput_Tel) GetPattern() string

func (*WhisperFormInput_Tel) GetTooltip

func (x *WhisperFormInput_Tel) GetTooltip() string

func (*WhisperFormInput_Tel) GetValue

func (x *WhisperFormInput_Tel) GetValue() string

func (*WhisperFormInput_Tel) ProtoMessage

func (*WhisperFormInput_Tel) ProtoMessage()

func (*WhisperFormInput_Tel) ProtoReflect

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

func (*WhisperFormInput_Tel) Reset

func (x *WhisperFormInput_Tel) Reset()

func (*WhisperFormInput_Tel) String

func (x *WhisperFormInput_Tel) String() string

type WhisperFormInput_Tel_

type WhisperFormInput_Tel_ struct {
	Tel *WhisperFormInput_Tel `protobuf:"bytes,8,opt,name=tel,proto3,oneof"`
}

type WhisperFormInput_Text

type WhisperFormInput_Text struct {
	Label   string `protobuf:"bytes,1,opt,name=label,proto3" json:"label,omitempty"`
	Tooltip string `protobuf:"bytes,2,opt,name=tooltip,proto3" json:"tooltip,omitempty"`
	Value   string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
	Order   uint32 `protobuf:"varint,4,opt,name=order,proto3" json:"order,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperFormInput_Text) Descriptor deprecated

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

Deprecated: Use WhisperFormInput_Text.ProtoReflect.Descriptor instead.

func (*WhisperFormInput_Text) GetLabel

func (x *WhisperFormInput_Text) GetLabel() string

func (*WhisperFormInput_Text) GetOrder

func (x *WhisperFormInput_Text) GetOrder() uint32

func (*WhisperFormInput_Text) GetTooltip

func (x *WhisperFormInput_Text) GetTooltip() string

func (*WhisperFormInput_Text) GetValue

func (x *WhisperFormInput_Text) GetValue() string

func (*WhisperFormInput_Text) ProtoMessage

func (*WhisperFormInput_Text) ProtoMessage()

func (*WhisperFormInput_Text) ProtoReflect

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

func (*WhisperFormInput_Text) Reset

func (x *WhisperFormInput_Text) Reset()

func (*WhisperFormInput_Text) String

func (x *WhisperFormInput_Text) String() string

type WhisperFormInput_Text_

type WhisperFormInput_Text_ struct {
	Text *WhisperFormInput_Text `protobuf:"bytes,9,opt,name=text,proto3,oneof"`
}

type WhisperFormInput_Time

type WhisperFormInput_Time struct {
	Label   string                 `protobuf:"bytes,1,opt,name=label,proto3" json:"label,omitempty"`
	Tooltip string                 `protobuf:"bytes,2,opt,name=tooltip,proto3" json:"tooltip,omitempty"`
	Value   *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
	Order   uint32                 `protobuf:"varint,4,opt,name=order,proto3" json:"order,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperFormInput_Time) Descriptor deprecated

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

Deprecated: Use WhisperFormInput_Time.ProtoReflect.Descriptor instead.

func (*WhisperFormInput_Time) GetLabel

func (x *WhisperFormInput_Time) GetLabel() string

func (*WhisperFormInput_Time) GetOrder

func (x *WhisperFormInput_Time) GetOrder() uint32

func (*WhisperFormInput_Time) GetTooltip

func (x *WhisperFormInput_Time) GetTooltip() string

func (*WhisperFormInput_Time) GetValue

func (*WhisperFormInput_Time) ProtoMessage

func (*WhisperFormInput_Time) ProtoMessage()

func (*WhisperFormInput_Time) ProtoReflect

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

func (*WhisperFormInput_Time) Reset

func (x *WhisperFormInput_Time) Reset()

func (*WhisperFormInput_Time) String

func (x *WhisperFormInput_Time) String() string

type WhisperFormInput_Time_

type WhisperFormInput_Time_ struct {
	Time *WhisperFormInput_Time `protobuf:"bytes,10,opt,name=time,proto3,oneof"`
}

type WhisperFormOutput

type WhisperFormOutput struct {

	// Types that are assignable to OutputOneof:
	//	*WhisperFormOutput_Checkbox_
	//	*WhisperFormOutput_Email_
	//	*WhisperFormOutput_Markdown_
	//	*WhisperFormOutput_Number_
	//	*WhisperFormOutput_Password_
	//	*WhisperFormOutput_Radio_
	//	*WhisperFormOutput_Select_
	//	*WhisperFormOutput_Tel_
	//	*WhisperFormOutput_Text_
	//	*WhisperFormOutput_Time_
	OutputOneof isWhisperFormOutput_OutputOneof `protobuf_oneof:"output_oneof"`
	// contains filtered or unexported fields
}

func (*WhisperFormOutput) Descriptor deprecated

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

Deprecated: Use WhisperFormOutput.ProtoReflect.Descriptor instead.

func (*WhisperFormOutput) GetCheckbox

func (*WhisperFormOutput) GetEmail

func (*WhisperFormOutput) GetMarkdown

func (*WhisperFormOutput) GetNumber

func (*WhisperFormOutput) GetOutputOneof

func (m *WhisperFormOutput) GetOutputOneof() isWhisperFormOutput_OutputOneof

func (*WhisperFormOutput) GetPassword

func (*WhisperFormOutput) GetRadio

func (*WhisperFormOutput) GetSelect

func (*WhisperFormOutput) GetTel

func (*WhisperFormOutput) GetText

func (*WhisperFormOutput) GetTime

func (*WhisperFormOutput) ProtoMessage

func (*WhisperFormOutput) ProtoMessage()

func (*WhisperFormOutput) ProtoReflect

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

func (*WhisperFormOutput) Reset

func (x *WhisperFormOutput) Reset()

func (*WhisperFormOutput) String

func (x *WhisperFormOutput) String() string

type WhisperFormOutput_Checkbox

type WhisperFormOutput_Checkbox struct {
	Value bool `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperFormOutput_Checkbox) Descriptor deprecated

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

Deprecated: Use WhisperFormOutput_Checkbox.ProtoReflect.Descriptor instead.

func (*WhisperFormOutput_Checkbox) GetValue

func (x *WhisperFormOutput_Checkbox) GetValue() bool

func (*WhisperFormOutput_Checkbox) ProtoMessage

func (*WhisperFormOutput_Checkbox) ProtoMessage()

func (*WhisperFormOutput_Checkbox) ProtoReflect

func (*WhisperFormOutput_Checkbox) Reset

func (x *WhisperFormOutput_Checkbox) Reset()

func (*WhisperFormOutput_Checkbox) String

func (x *WhisperFormOutput_Checkbox) String() string

type WhisperFormOutput_Checkbox_

type WhisperFormOutput_Checkbox_ struct {
	Checkbox *WhisperFormOutput_Checkbox `protobuf:"bytes,1,opt,name=checkbox,proto3,oneof"`
}

type WhisperFormOutput_Email

type WhisperFormOutput_Email struct {
	Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperFormOutput_Email) Descriptor deprecated

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

Deprecated: Use WhisperFormOutput_Email.ProtoReflect.Descriptor instead.

func (*WhisperFormOutput_Email) GetValue

func (x *WhisperFormOutput_Email) GetValue() string

func (*WhisperFormOutput_Email) ProtoMessage

func (*WhisperFormOutput_Email) ProtoMessage()

func (*WhisperFormOutput_Email) ProtoReflect

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

func (*WhisperFormOutput_Email) Reset

func (x *WhisperFormOutput_Email) Reset()

func (*WhisperFormOutput_Email) String

func (x *WhisperFormOutput_Email) String() string

type WhisperFormOutput_Email_

type WhisperFormOutput_Email_ struct {
	Email *WhisperFormOutput_Email `protobuf:"bytes,2,opt,name=email,proto3,oneof"`
}

type WhisperFormOutput_Markdown

type WhisperFormOutput_Markdown struct {
	Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperFormOutput_Markdown) Descriptor deprecated

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

Deprecated: Use WhisperFormOutput_Markdown.ProtoReflect.Descriptor instead.

func (*WhisperFormOutput_Markdown) GetValue

func (x *WhisperFormOutput_Markdown) GetValue() string

func (*WhisperFormOutput_Markdown) ProtoMessage

func (*WhisperFormOutput_Markdown) ProtoMessage()

func (*WhisperFormOutput_Markdown) ProtoReflect

func (*WhisperFormOutput_Markdown) Reset

func (x *WhisperFormOutput_Markdown) Reset()

func (*WhisperFormOutput_Markdown) String

func (x *WhisperFormOutput_Markdown) String() string

type WhisperFormOutput_Markdown_

type WhisperFormOutput_Markdown_ struct {
	Markdown *WhisperFormOutput_Markdown `protobuf:"bytes,3,opt,name=markdown,proto3,oneof"`
}

type WhisperFormOutput_Number

type WhisperFormOutput_Number struct {
	Value float32 `protobuf:"fixed32,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperFormOutput_Number) Descriptor deprecated

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

Deprecated: Use WhisperFormOutput_Number.ProtoReflect.Descriptor instead.

func (*WhisperFormOutput_Number) GetValue

func (x *WhisperFormOutput_Number) GetValue() float32

func (*WhisperFormOutput_Number) ProtoMessage

func (*WhisperFormOutput_Number) ProtoMessage()

func (*WhisperFormOutput_Number) ProtoReflect

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

func (*WhisperFormOutput_Number) Reset

func (x *WhisperFormOutput_Number) Reset()

func (*WhisperFormOutput_Number) String

func (x *WhisperFormOutput_Number) String() string

type WhisperFormOutput_Number_

type WhisperFormOutput_Number_ struct {
	Number *WhisperFormOutput_Number `protobuf:"bytes,4,opt,name=number,proto3,oneof"`
}

type WhisperFormOutput_Password

type WhisperFormOutput_Password struct {
	Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperFormOutput_Password) Descriptor deprecated

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

Deprecated: Use WhisperFormOutput_Password.ProtoReflect.Descriptor instead.

func (*WhisperFormOutput_Password) GetValue

func (x *WhisperFormOutput_Password) GetValue() string

func (*WhisperFormOutput_Password) ProtoMessage

func (*WhisperFormOutput_Password) ProtoMessage()

func (*WhisperFormOutput_Password) ProtoReflect

func (*WhisperFormOutput_Password) Reset

func (x *WhisperFormOutput_Password) Reset()

func (*WhisperFormOutput_Password) String

func (x *WhisperFormOutput_Password) String() string

type WhisperFormOutput_Password_

type WhisperFormOutput_Password_ struct {
	Password *WhisperFormOutput_Password `protobuf:"bytes,5,opt,name=password,proto3,oneof"`
}

type WhisperFormOutput_Radio

type WhisperFormOutput_Radio struct {
	Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperFormOutput_Radio) Descriptor deprecated

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

Deprecated: Use WhisperFormOutput_Radio.ProtoReflect.Descriptor instead.

func (*WhisperFormOutput_Radio) GetValue

func (x *WhisperFormOutput_Radio) GetValue() string

func (*WhisperFormOutput_Radio) ProtoMessage

func (*WhisperFormOutput_Radio) ProtoMessage()

func (*WhisperFormOutput_Radio) ProtoReflect

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

func (*WhisperFormOutput_Radio) Reset

func (x *WhisperFormOutput_Radio) Reset()

func (*WhisperFormOutput_Radio) String

func (x *WhisperFormOutput_Radio) String() string

type WhisperFormOutput_Radio_

type WhisperFormOutput_Radio_ struct {
	Radio *WhisperFormOutput_Radio `protobuf:"bytes,6,opt,name=radio,proto3,oneof"`
}

type WhisperFormOutput_Select

type WhisperFormOutput_Select struct {
	Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperFormOutput_Select) Descriptor deprecated

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

Deprecated: Use WhisperFormOutput_Select.ProtoReflect.Descriptor instead.

func (*WhisperFormOutput_Select) GetValue

func (x *WhisperFormOutput_Select) GetValue() string

func (*WhisperFormOutput_Select) ProtoMessage

func (*WhisperFormOutput_Select) ProtoMessage()

func (*WhisperFormOutput_Select) ProtoReflect

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

func (*WhisperFormOutput_Select) Reset

func (x *WhisperFormOutput_Select) Reset()

func (*WhisperFormOutput_Select) String

func (x *WhisperFormOutput_Select) String() string

type WhisperFormOutput_Select_

type WhisperFormOutput_Select_ struct {
	Select *WhisperFormOutput_Select `protobuf:"bytes,7,opt,name=select,proto3,oneof"`
}

type WhisperFormOutput_Tel

type WhisperFormOutput_Tel struct {
	Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperFormOutput_Tel) Descriptor deprecated

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

Deprecated: Use WhisperFormOutput_Tel.ProtoReflect.Descriptor instead.

func (*WhisperFormOutput_Tel) GetValue

func (x *WhisperFormOutput_Tel) GetValue() string

func (*WhisperFormOutput_Tel) ProtoMessage

func (*WhisperFormOutput_Tel) ProtoMessage()

func (*WhisperFormOutput_Tel) ProtoReflect

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

func (*WhisperFormOutput_Tel) Reset

func (x *WhisperFormOutput_Tel) Reset()

func (*WhisperFormOutput_Tel) String

func (x *WhisperFormOutput_Tel) String() string

type WhisperFormOutput_Tel_

type WhisperFormOutput_Tel_ struct {
	Tel *WhisperFormOutput_Tel `protobuf:"bytes,8,opt,name=tel,proto3,oneof"`
}

type WhisperFormOutput_Text

type WhisperFormOutput_Text struct {
	Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperFormOutput_Text) Descriptor deprecated

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

Deprecated: Use WhisperFormOutput_Text.ProtoReflect.Descriptor instead.

func (*WhisperFormOutput_Text) GetValue

func (x *WhisperFormOutput_Text) GetValue() string

func (*WhisperFormOutput_Text) ProtoMessage

func (*WhisperFormOutput_Text) ProtoMessage()

func (*WhisperFormOutput_Text) ProtoReflect

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

func (*WhisperFormOutput_Text) Reset

func (x *WhisperFormOutput_Text) Reset()

func (*WhisperFormOutput_Text) String

func (x *WhisperFormOutput_Text) String() string

type WhisperFormOutput_Text_

type WhisperFormOutput_Text_ struct {
	Text *WhisperFormOutput_Text `protobuf:"bytes,9,opt,name=text,proto3,oneof"`
}

type WhisperFormOutput_Time

type WhisperFormOutput_Time struct {
	Value *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperFormOutput_Time) Descriptor deprecated

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

Deprecated: Use WhisperFormOutput_Time.ProtoReflect.Descriptor instead.

func (*WhisperFormOutput_Time) GetValue

func (*WhisperFormOutput_Time) ProtoMessage

func (*WhisperFormOutput_Time) ProtoMessage()

func (*WhisperFormOutput_Time) ProtoReflect

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

func (*WhisperFormOutput_Time) Reset

func (x *WhisperFormOutput_Time) Reset()

func (*WhisperFormOutput_Time) String

func (x *WhisperFormOutput_Time) String() string

type WhisperFormOutput_Time_

type WhisperFormOutput_Time_ struct {
	Time *WhisperFormOutput_Time `protobuf:"bytes,10,opt,name=time,proto3,oneof"`
}

type WhisperFormRequest

type WhisperFormRequest struct {
	Session     *Session                     `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	Meta        *WhisperMeta                 `protobuf:"bytes,2,opt,name=meta,proto3" json:"meta,omitempty"`
	Markdown    string                       `protobuf:"bytes,3,opt,name=markdown,proto3" json:"markdown,omitempty"`
	SubmitLabel string                       `protobuf:"bytes,4,opt,name=submitLabel,proto3" json:"submitLabel,omitempty"`
	CancelLabel string                       `protobuf:"bytes,5,opt,name=cancelLabel,proto3" json:"cancelLabel,omitempty"`
	Inputs      map[string]*WhisperFormInput `` /* 153-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*WhisperFormRequest) Descriptor deprecated

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

Deprecated: Use WhisperFormRequest.ProtoReflect.Descriptor instead.

func (*WhisperFormRequest) GetCancelLabel

func (x *WhisperFormRequest) GetCancelLabel() string

func (*WhisperFormRequest) GetInputs

func (x *WhisperFormRequest) GetInputs() map[string]*WhisperFormInput

func (*WhisperFormRequest) GetMarkdown

func (x *WhisperFormRequest) GetMarkdown() string

func (*WhisperFormRequest) GetMeta

func (x *WhisperFormRequest) GetMeta() *WhisperMeta

func (*WhisperFormRequest) GetSession

func (x *WhisperFormRequest) GetSession() *Session

func (*WhisperFormRequest) GetSubmitLabel

func (x *WhisperFormRequest) GetSubmitLabel() string

func (*WhisperFormRequest) ProtoMessage

func (*WhisperFormRequest) ProtoMessage()

func (*WhisperFormRequest) ProtoReflect

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

func (*WhisperFormRequest) Reset

func (x *WhisperFormRequest) Reset()

func (*WhisperFormRequest) String

func (x *WhisperFormRequest) String() string

type WhisperFormResult

type WhisperFormResult struct {
	Submitted bool                          `protobuf:"varint,1,opt,name=submitted,proto3" json:"submitted,omitempty"` // true = form was submitted, false = form was canceled
	Outputs   map[string]*WhisperFormOutput ``                                                                         /* 155-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*WhisperFormResult) Descriptor deprecated

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

Deprecated: Use WhisperFormResult.ProtoReflect.Descriptor instead.

func (*WhisperFormResult) GetOutputs

func (x *WhisperFormResult) GetOutputs() map[string]*WhisperFormOutput

func (*WhisperFormResult) GetSubmitted

func (x *WhisperFormResult) GetSubmitted() bool

func (*WhisperFormResult) ProtoMessage

func (*WhisperFormResult) ProtoMessage()

func (*WhisperFormResult) ProtoReflect

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

func (*WhisperFormResult) Reset

func (x *WhisperFormResult) Reset()

func (*WhisperFormResult) String

func (x *WhisperFormResult) String() string

type WhisperFormStreamResponse

type WhisperFormStreamResponse struct {

	// Types that are assignable to WhisperFormResponseOneof:
	//	*WhisperFormStreamResponse_Result
	//	*WhisperFormStreamResponse_Update
	WhisperFormResponseOneof isWhisperFormStreamResponse_WhisperFormResponseOneof `protobuf_oneof:"whisper_form_response_oneof"`
	Error                    string                                               `protobuf:"bytes,15,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperFormStreamResponse) Descriptor deprecated

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

Deprecated: Use WhisperFormStreamResponse.ProtoReflect.Descriptor instead.

func (*WhisperFormStreamResponse) GetError

func (x *WhisperFormStreamResponse) GetError() string

func (*WhisperFormStreamResponse) GetResult

func (*WhisperFormStreamResponse) GetUpdate

func (*WhisperFormStreamResponse) GetWhisperFormResponseOneof

func (m *WhisperFormStreamResponse) GetWhisperFormResponseOneof() isWhisperFormStreamResponse_WhisperFormResponseOneof

func (*WhisperFormStreamResponse) ProtoMessage

func (*WhisperFormStreamResponse) ProtoMessage()

func (*WhisperFormStreamResponse) ProtoReflect

func (*WhisperFormStreamResponse) Reset

func (x *WhisperFormStreamResponse) Reset()

func (*WhisperFormStreamResponse) String

func (x *WhisperFormStreamResponse) String() string

type WhisperFormStreamResponse_Result

type WhisperFormStreamResponse_Result struct {
	Result *WhisperFormResult `protobuf:"bytes,1,opt,name=result,proto3,oneof"`
}

type WhisperFormStreamResponse_Update

type WhisperFormStreamResponse_Update struct {
	Update *WhisperFormUpdate `protobuf:"bytes,2,opt,name=update,proto3,oneof"`
}

type WhisperFormUpdate

type WhisperFormUpdate struct {
	Key    string             `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Output *WhisperFormOutput `protobuf:"bytes,2,opt,name=output,proto3" json:"output,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperFormUpdate) Descriptor deprecated

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

Deprecated: Use WhisperFormUpdate.ProtoReflect.Descriptor instead.

func (*WhisperFormUpdate) GetKey

func (x *WhisperFormUpdate) GetKey() string

func (*WhisperFormUpdate) GetOutput

func (x *WhisperFormUpdate) GetOutput() *WhisperFormOutput

func (*WhisperFormUpdate) ProtoMessage

func (*WhisperFormUpdate) ProtoMessage()

func (*WhisperFormUpdate) ProtoReflect

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

func (*WhisperFormUpdate) Reset

func (x *WhisperFormUpdate) Reset()

func (*WhisperFormUpdate) String

func (x *WhisperFormUpdate) String() string

type WhisperListElement

type WhisperListElement struct {
	Order uint32 `protobuf:"varint,1,opt,name=order,proto3" json:"order,omitempty"`
	Extra bool   `protobuf:"varint,2,opt,name=extra,proto3" json:"extra,omitempty"` // 0 = shows when whisper is in "less" mode AND "more" mode. 1 = shows only when whisper is in "more" mode.
	// Types that are assignable to ElementOneof:
	//	*WhisperListElement_Pair_
	//	*WhisperListElement_Message_
	//	*WhisperListElement_Divider_
	//	*WhisperListElement_Link_
	ElementOneof isWhisperListElement_ElementOneof `protobuf_oneof:"element_oneof"`
	// contains filtered or unexported fields
}

func (*WhisperListElement) Descriptor deprecated

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

Deprecated: Use WhisperListElement.ProtoReflect.Descriptor instead.

func (*WhisperListElement) GetDivider

func (*WhisperListElement) GetElementOneof

func (m *WhisperListElement) GetElementOneof() isWhisperListElement_ElementOneof

func (*WhisperListElement) GetExtra

func (x *WhisperListElement) GetExtra() bool

func (*WhisperListElement) GetMessage

func (*WhisperListElement) GetOrder

func (x *WhisperListElement) GetOrder() uint32

func (*WhisperListElement) GetPair

func (*WhisperListElement) ProtoMessage

func (*WhisperListElement) ProtoMessage()

func (*WhisperListElement) ProtoReflect

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

func (*WhisperListElement) Reset

func (x *WhisperListElement) Reset()

func (*WhisperListElement) String

func (x *WhisperListElement) String() string

type WhisperListElement_Align

type WhisperListElement_Align int32
const (
	WhisperListElement_ALIGN_LEFT   WhisperListElement_Align = 0
	WhisperListElement_ALIGN_CENTER WhisperListElement_Align = 1
	WhisperListElement_ALIGN_RIGHT  WhisperListElement_Align = 2
)

func (WhisperListElement_Align) Descriptor

func (WhisperListElement_Align) Enum

func (WhisperListElement_Align) EnumDescriptor deprecated

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

Deprecated: Use WhisperListElement_Align.Descriptor instead.

func (WhisperListElement_Align) Number

func (WhisperListElement_Align) String

func (x WhisperListElement_Align) String() string

func (WhisperListElement_Align) Type

type WhisperListElement_Divider

type WhisperListElement_Divider struct {
	Style WhisperListElement_Style `protobuf:"varint,1,opt,name=style,proto3,enum=proto.WhisperListElement_Style" json:"style,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperListElement_Divider) Descriptor deprecated

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

Deprecated: Use WhisperListElement_Divider.ProtoReflect.Descriptor instead.

func (*WhisperListElement_Divider) GetStyle

func (*WhisperListElement_Divider) ProtoMessage

func (*WhisperListElement_Divider) ProtoMessage()

func (*WhisperListElement_Divider) ProtoReflect

func (*WhisperListElement_Divider) Reset

func (x *WhisperListElement_Divider) Reset()

func (*WhisperListElement_Divider) String

func (x *WhisperListElement_Divider) String() string

type WhisperListElement_Divider_

type WhisperListElement_Divider_ struct {
	Divider *WhisperListElement_Divider `protobuf:"bytes,6,opt,name=divider,proto3,oneof"`
}
type WhisperListElement_Link struct {
	Align WhisperListElement_Align `protobuf:"varint,1,opt,name=align,proto3,enum=proto.WhisperListElement_Align" json:"align,omitempty"`
	Href  string                   `protobuf:"bytes,2,opt,name=href,proto3" json:"href,omitempty"`
	Style WhisperListElement_Style `protobuf:"varint,3,opt,name=style,proto3,enum=proto.WhisperListElement_Style" json:"style,omitempty"`
	Text  string                   `protobuf:"bytes,4,opt,name=text,proto3" json:"text,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperListElement_Link) Descriptor deprecated

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

Deprecated: Use WhisperListElement_Link.ProtoReflect.Descriptor instead.

func (*WhisperListElement_Link) GetAlign

func (*WhisperListElement_Link) GetHref

func (x *WhisperListElement_Link) GetHref() string

func (*WhisperListElement_Link) GetStyle

func (*WhisperListElement_Link) GetText

func (x *WhisperListElement_Link) GetText() string

func (*WhisperListElement_Link) ProtoMessage

func (*WhisperListElement_Link) ProtoMessage()

func (*WhisperListElement_Link) ProtoReflect

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

func (*WhisperListElement_Link) Reset

func (x *WhisperListElement_Link) Reset()

func (*WhisperListElement_Link) String

func (x *WhisperListElement_Link) String() string
type WhisperListElement_Link_ struct {
	Link *WhisperListElement_Link `protobuf:"bytes,7,opt,name=link,proto3,oneof"`
}

type WhisperListElement_Message

type WhisperListElement_Message struct {
	Header string                   `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	Body   string                   `protobuf:"bytes,2,opt,name=body,proto3" json:"body,omitempty"`
	Style  WhisperListElement_Style `protobuf:"varint,3,opt,name=style,proto3,enum=proto.WhisperListElement_Style" json:"style,omitempty"`
	Align  WhisperListElement_Align `protobuf:"varint,4,opt,name=align,proto3,enum=proto.WhisperListElement_Align" json:"align,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperListElement_Message) Descriptor deprecated

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

Deprecated: Use WhisperListElement_Message.ProtoReflect.Descriptor instead.

func (*WhisperListElement_Message) GetAlign

func (*WhisperListElement_Message) GetBody

func (x *WhisperListElement_Message) GetBody() string

func (*WhisperListElement_Message) GetHeader

func (x *WhisperListElement_Message) GetHeader() string

func (*WhisperListElement_Message) GetStyle

func (*WhisperListElement_Message) ProtoMessage

func (*WhisperListElement_Message) ProtoMessage()

func (*WhisperListElement_Message) ProtoReflect

func (*WhisperListElement_Message) Reset

func (x *WhisperListElement_Message) Reset()

func (*WhisperListElement_Message) String

func (x *WhisperListElement_Message) String() string

type WhisperListElement_Message_

type WhisperListElement_Message_ struct {
	Message *WhisperListElement_Message `protobuf:"bytes,5,opt,name=message,proto3,oneof"`
}

type WhisperListElement_Pair

type WhisperListElement_Pair struct {
	Label    string                   `protobuf:"bytes,1,opt,name=label,proto3" json:"label,omitempty"`
	Value    string                   `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	Style    WhisperListElement_Style `protobuf:"varint,3,opt,name=style,proto3,enum=proto.WhisperListElement_Style" json:"style,omitempty"`
	Copyable bool                     `protobuf:"varint,4,opt,name=copyable,proto3" json:"copyable,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperListElement_Pair) Descriptor deprecated

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

Deprecated: Use WhisperListElement_Pair.ProtoReflect.Descriptor instead.

func (*WhisperListElement_Pair) GetCopyable

func (x *WhisperListElement_Pair) GetCopyable() bool

func (*WhisperListElement_Pair) GetLabel

func (x *WhisperListElement_Pair) GetLabel() string

func (*WhisperListElement_Pair) GetStyle

func (*WhisperListElement_Pair) GetValue

func (x *WhisperListElement_Pair) GetValue() string

func (*WhisperListElement_Pair) ProtoMessage

func (*WhisperListElement_Pair) ProtoMessage()

func (*WhisperListElement_Pair) ProtoReflect

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

func (*WhisperListElement_Pair) Reset

func (x *WhisperListElement_Pair) Reset()

func (*WhisperListElement_Pair) String

func (x *WhisperListElement_Pair) String() string

type WhisperListElement_Pair_

type WhisperListElement_Pair_ struct {
	Pair *WhisperListElement_Pair `protobuf:"bytes,4,opt,name=pair,proto3,oneof"`
}

type WhisperListElement_Style

type WhisperListElement_Style int32
const (
	WhisperListElement_STYLE_NONE    WhisperListElement_Style = 0
	WhisperListElement_STYLE_SUCCESS WhisperListElement_Style = 1
	WhisperListElement_STYLE_WARN    WhisperListElement_Style = 2
	WhisperListElement_STYLE_ERROR   WhisperListElement_Style = 3
)

func (WhisperListElement_Style) Descriptor

func (WhisperListElement_Style) Enum

func (WhisperListElement_Style) EnumDescriptor deprecated

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

Deprecated: Use WhisperListElement_Style.Descriptor instead.

func (WhisperListElement_Style) Number

func (WhisperListElement_Style) String

func (x WhisperListElement_Style) String() string

func (WhisperListElement_Style) Type

type WhisperListRequest

type WhisperListRequest struct {
	Session  *Session                       `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	Meta     *WhisperMeta                   `protobuf:"bytes,2,opt,name=meta,proto3" json:"meta,omitempty"`
	Elements map[string]*WhisperListElement `` /* 157-byte string literal not displayed */
	Markdown string                         `protobuf:"bytes,4,opt,name=markdown,proto3" json:"markdown,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperListRequest) Descriptor deprecated

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

Deprecated: Use WhisperListRequest.ProtoReflect.Descriptor instead.

func (*WhisperListRequest) GetElements

func (x *WhisperListRequest) GetElements() map[string]*WhisperListElement

func (*WhisperListRequest) GetMarkdown

func (x *WhisperListRequest) GetMarkdown() string

func (*WhisperListRequest) GetMeta

func (x *WhisperListRequest) GetMeta() *WhisperMeta

func (*WhisperListRequest) GetSession

func (x *WhisperListRequest) GetSession() *Session

func (*WhisperListRequest) ProtoMessage

func (*WhisperListRequest) ProtoMessage()

func (*WhisperListRequest) ProtoReflect

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

func (*WhisperListRequest) Reset

func (x *WhisperListRequest) Reset()

func (*WhisperListRequest) String

func (x *WhisperListRequest) String() string

type WhisperMarkdownRequest

type WhisperMarkdownRequest struct {
	Session  *Session     `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	Meta     *WhisperMeta `protobuf:"bytes,2,opt,name=meta,proto3" json:"meta,omitempty"`
	Markdown string       `protobuf:"bytes,3,opt,name=markdown,proto3" json:"markdown,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperMarkdownRequest) Descriptor deprecated

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

Deprecated: Use WhisperMarkdownRequest.ProtoReflect.Descriptor instead.

func (*WhisperMarkdownRequest) GetMarkdown

func (x *WhisperMarkdownRequest) GetMarkdown() string

func (*WhisperMarkdownRequest) GetMeta

func (x *WhisperMarkdownRequest) GetMeta() *WhisperMeta

func (*WhisperMarkdownRequest) GetSession

func (x *WhisperMarkdownRequest) GetSession() *Session

func (*WhisperMarkdownRequest) ProtoMessage

func (*WhisperMarkdownRequest) ProtoMessage()

func (*WhisperMarkdownRequest) ProtoReflect

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

func (*WhisperMarkdownRequest) Reset

func (x *WhisperMarkdownRequest) Reset()

func (*WhisperMarkdownRequest) String

func (x *WhisperMarkdownRequest) String() string

type WhisperMeta

type WhisperMeta struct {
	Label string `protobuf:"bytes,1,opt,name=label,proto3" json:"label,omitempty"`
	// contains filtered or unexported fields
}

func (*WhisperMeta) Descriptor deprecated

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

Deprecated: Use WhisperMeta.ProtoReflect.Descriptor instead.

func (*WhisperMeta) GetLabel

func (x *WhisperMeta) GetLabel() string

func (*WhisperMeta) ProtoMessage

func (*WhisperMeta) ProtoMessage()

func (*WhisperMeta) ProtoReflect

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

func (*WhisperMeta) Reset

func (x *WhisperMeta) Reset()

func (*WhisperMeta) String

func (x *WhisperMeta) String() string

type WhisperServer

type WhisperServer interface {
	// Send a markdown whisper
	WhisperMarkdown(context.Context, *WhisperMarkdownRequest) (*emptypb.Empty, error)
	// Send a confirm whisper
	WhisperConfirm(context.Context, *WhisperConfirmRequest) (*WhisperConfirmResponse, error)
	// Send a disambiguation whisper
	WhisperDisambiguation(*WhisperDisambiguationRequest, Whisper_WhisperDisambiguationServer) error
	// Send a form whisper
	WhisperForm(*WhisperFormRequest, Whisper_WhisperFormServer) error
	// Send a list whisper
	WhisperList(context.Context, *WhisperListRequest) (*emptypb.Empty, error)
}

WhisperServer is the server API for Whisper service.

type Whisper_WhisperDisambiguationClient

type Whisper_WhisperDisambiguationClient interface {
	Recv() (*WhisperDisambiguationStreamResponse, error)
	grpc.ClientStream
}

type Whisper_WhisperDisambiguationServer

type Whisper_WhisperDisambiguationServer interface {
	Send(*WhisperDisambiguationStreamResponse) error
	grpc.ServerStream
}

type Whisper_WhisperFormClient

type Whisper_WhisperFormClient interface {
	Recv() (*WhisperFormStreamResponse, error)
	grpc.ClientStream
}

type Whisper_WhisperFormServer

type Whisper_WhisperFormServer interface {
	Send(*WhisperFormStreamResponse) error
	grpc.ServerStream
}

type WindowAction

type WindowAction int32
const (
	WindowAction_WINDOW_ACTION_UNKNOWN       WindowAction = 0
	WindowAction_WINDOW_ACTION_FOCUSED       WindowAction = 1
	WindowAction_WINDOW_ACTION_UNFOCUSED     WindowAction = 2
	WindowAction_WINDOW_ACTION_OPENED        WindowAction = 3
	WindowAction_WINDOW_ACTION_CLOSED        WindowAction = 4
	WindowAction_WINDOW_ACTION_MOVED         WindowAction = 5
	WindowAction_WINDOW_ACTION_RESIZED       WindowAction = 6
	WindowAction_WINDOW_ACTION_TITLE_CHANGED WindowAction = 7
)

func (WindowAction) Descriptor

func (WindowAction) Enum

func (x WindowAction) Enum() *WindowAction

func (WindowAction) EnumDescriptor deprecated

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

Deprecated: Use WindowAction.Descriptor instead.

func (WindowAction) Number

func (WindowAction) String

func (x WindowAction) String() string

func (WindowAction) Type

type WindowActiveWindowRequest

type WindowActiveWindowRequest struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	// contains filtered or unexported fields
}

func (*WindowActiveWindowRequest) Descriptor deprecated

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

Deprecated: Use WindowActiveWindowRequest.ProtoReflect.Descriptor instead.

func (*WindowActiveWindowRequest) GetSession

func (x *WindowActiveWindowRequest) GetSession() *Session

func (*WindowActiveWindowRequest) ProtoMessage

func (*WindowActiveWindowRequest) ProtoMessage()

func (*WindowActiveWindowRequest) ProtoReflect

func (*WindowActiveWindowRequest) Reset

func (x *WindowActiveWindowRequest) Reset()

func (*WindowActiveWindowRequest) String

func (x *WindowActiveWindowRequest) String() string

type WindowActiveWindowResponse

type WindowActiveWindowResponse struct {
	Window *WindowInfo `protobuf:"bytes,1,opt,name=window,proto3" json:"window,omitempty"`
	// contains filtered or unexported fields
}

func (*WindowActiveWindowResponse) Descriptor deprecated

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

Deprecated: Use WindowActiveWindowResponse.ProtoReflect.Descriptor instead.

func (*WindowActiveWindowResponse) GetWindow

func (x *WindowActiveWindowResponse) GetWindow() *WindowInfo

func (*WindowActiveWindowResponse) ProtoMessage

func (*WindowActiveWindowResponse) ProtoMessage()

func (*WindowActiveWindowResponse) ProtoReflect

func (*WindowActiveWindowResponse) Reset

func (x *WindowActiveWindowResponse) Reset()

func (*WindowActiveWindowResponse) String

func (x *WindowActiveWindowResponse) String() string

type WindowActiveWindowStreamRequest

type WindowActiveWindowStreamRequest struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	// contains filtered or unexported fields
}

func (*WindowActiveWindowStreamRequest) Descriptor deprecated

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

Deprecated: Use WindowActiveWindowStreamRequest.ProtoReflect.Descriptor instead.

func (*WindowActiveWindowStreamRequest) GetSession

func (x *WindowActiveWindowStreamRequest) GetSession() *Session

func (*WindowActiveWindowStreamRequest) ProtoMessage

func (*WindowActiveWindowStreamRequest) ProtoMessage()

func (*WindowActiveWindowStreamRequest) ProtoReflect

func (*WindowActiveWindowStreamRequest) Reset

func (*WindowActiveWindowStreamRequest) String

type WindowActiveWindowStreamResponse

type WindowActiveWindowStreamResponse struct {
	Window *WindowInfo `protobuf:"bytes,1,opt,name=window,proto3" json:"window,omitempty"`
	Error  string      `protobuf:"bytes,15,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*WindowActiveWindowStreamResponse) Descriptor deprecated

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

Deprecated: Use WindowActiveWindowStreamResponse.ProtoReflect.Descriptor instead.

func (*WindowActiveWindowStreamResponse) GetError

func (*WindowActiveWindowStreamResponse) GetWindow

func (*WindowActiveWindowStreamResponse) ProtoMessage

func (*WindowActiveWindowStreamResponse) ProtoMessage()

func (*WindowActiveWindowStreamResponse) ProtoReflect

func (*WindowActiveWindowStreamResponse) Reset

func (*WindowActiveWindowStreamResponse) String

type WindowClient

type WindowClient interface {
	// get information about currently focused window
	WindowActiveWindow(ctx context.Context, in *WindowActiveWindowRequest, opts ...grpc.CallOption) (*WindowActiveWindowResponse, error)
	// stream information about currently focused window as it changes
	WindowActiveWindowStream(ctx context.Context, in *WindowActiveWindowStreamRequest, opts ...grpc.CallOption) (Window_WindowActiveWindowStreamClient, error)
	// get information about all windows
	WindowState(ctx context.Context, in *WindowStateRequest, opts ...grpc.CallOption) (*WindowStateResponse, error)
	// get information about windows as they change
	WindowStateStream(ctx context.Context, in *WindowStateStreamRequest, opts ...grpc.CallOption) (Window_WindowStateStreamClient, error)
}

WindowClient is the client API for Window service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewWindowClient

func NewWindowClient(cc grpc.ClientConnInterface) WindowClient

type WindowInfo

type WindowInfo struct {
	Title  string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Path   string `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
	Pid    int64  `protobuf:"varint,3,opt,name=pid,proto3" json:"pid,omitempty"`
	X      int32  `protobuf:"varint,4,opt,name=x,proto3" json:"x,omitempty"`
	Y      int32  `protobuf:"varint,5,opt,name=y,proto3" json:"y,omitempty"`
	Width  int32  `protobuf:"varint,6,opt,name=width,proto3" json:"width,omitempty"`
	Height int32  `protobuf:"varint,7,opt,name=height,proto3" json:"height,omitempty"`
	// contains filtered or unexported fields
}

func (*WindowInfo) Descriptor deprecated

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

Deprecated: Use WindowInfo.ProtoReflect.Descriptor instead.

func (*WindowInfo) GetHeight

func (x *WindowInfo) GetHeight() int32

func (*WindowInfo) GetPath

func (x *WindowInfo) GetPath() string

func (*WindowInfo) GetPid

func (x *WindowInfo) GetPid() int64

func (*WindowInfo) GetTitle

func (x *WindowInfo) GetTitle() string

func (*WindowInfo) GetWidth

func (x *WindowInfo) GetWidth() int32

func (*WindowInfo) GetX

func (x *WindowInfo) GetX() int32

func (*WindowInfo) GetY

func (x *WindowInfo) GetY() int32

func (*WindowInfo) ProtoMessage

func (*WindowInfo) ProtoMessage()

func (*WindowInfo) ProtoReflect

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

func (*WindowInfo) Reset

func (x *WindowInfo) Reset()

func (*WindowInfo) String

func (x *WindowInfo) String() string

type WindowServer

type WindowServer interface {
	// get information about currently focused window
	WindowActiveWindow(context.Context, *WindowActiveWindowRequest) (*WindowActiveWindowResponse, error)
	// stream information about currently focused window as it changes
	WindowActiveWindowStream(*WindowActiveWindowStreamRequest, Window_WindowActiveWindowStreamServer) error
	// get information about all windows
	WindowState(context.Context, *WindowStateRequest) (*WindowStateResponse, error)
	// get information about windows as they change
	WindowStateStream(*WindowStateStreamRequest, Window_WindowStateStreamServer) error
}

WindowServer is the server API for Window service.

type WindowStateRequest

type WindowStateRequest struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	// contains filtered or unexported fields
}

func (*WindowStateRequest) Descriptor deprecated

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

Deprecated: Use WindowStateRequest.ProtoReflect.Descriptor instead.

func (*WindowStateRequest) GetSession

func (x *WindowStateRequest) GetSession() *Session

func (*WindowStateRequest) ProtoMessage

func (*WindowStateRequest) ProtoMessage()

func (*WindowStateRequest) ProtoReflect

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

func (*WindowStateRequest) Reset

func (x *WindowStateRequest) Reset()

func (*WindowStateRequest) String

func (x *WindowStateRequest) String() string

type WindowStateResponse

type WindowStateResponse struct {
	Window []*WindowInfo `protobuf:"bytes,1,rep,name=window,proto3" json:"window,omitempty"`
	// contains filtered or unexported fields
}

func (*WindowStateResponse) Descriptor deprecated

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

Deprecated: Use WindowStateResponse.ProtoReflect.Descriptor instead.

func (*WindowStateResponse) GetWindow

func (x *WindowStateResponse) GetWindow() []*WindowInfo

func (*WindowStateResponse) ProtoMessage

func (*WindowStateResponse) ProtoMessage()

func (*WindowStateResponse) ProtoReflect

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

func (*WindowStateResponse) Reset

func (x *WindowStateResponse) Reset()

func (*WindowStateResponse) String

func (x *WindowStateResponse) String() string

type WindowStateStreamRequest

type WindowStateStreamRequest struct {
	Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
	// contains filtered or unexported fields
}

func (*WindowStateStreamRequest) Descriptor deprecated

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

Deprecated: Use WindowStateStreamRequest.ProtoReflect.Descriptor instead.

func (*WindowStateStreamRequest) GetSession

func (x *WindowStateStreamRequest) GetSession() *Session

func (*WindowStateStreamRequest) ProtoMessage

func (*WindowStateStreamRequest) ProtoMessage()

func (*WindowStateStreamRequest) ProtoReflect

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

func (*WindowStateStreamRequest) Reset

func (x *WindowStateStreamRequest) Reset()

func (*WindowStateStreamRequest) String

func (x *WindowStateStreamRequest) String() string

type WindowStateStreamResponse

type WindowStateStreamResponse struct {
	Window *WindowInfo  `protobuf:"bytes,1,opt,name=window,proto3" json:"window,omitempty"`
	Action WindowAction `protobuf:"varint,2,opt,name=action,proto3,enum=proto.WindowAction" json:"action,omitempty"`
	Error  string       `protobuf:"bytes,15,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*WindowStateStreamResponse) Descriptor deprecated

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

Deprecated: Use WindowStateStreamResponse.ProtoReflect.Descriptor instead.

func (*WindowStateStreamResponse) GetAction

func (x *WindowStateStreamResponse) GetAction() WindowAction

func (*WindowStateStreamResponse) GetError

func (x *WindowStateStreamResponse) GetError() string

func (*WindowStateStreamResponse) GetWindow

func (x *WindowStateStreamResponse) GetWindow() *WindowInfo

func (*WindowStateStreamResponse) ProtoMessage

func (*WindowStateStreamResponse) ProtoMessage()

func (*WindowStateStreamResponse) ProtoReflect

func (*WindowStateStreamResponse) Reset

func (x *WindowStateStreamResponse) Reset()

func (*WindowStateStreamResponse) String

func (x *WindowStateStreamResponse) String() string

type Window_WindowActiveWindowStreamClient

type Window_WindowActiveWindowStreamClient interface {
	Recv() (*WindowActiveWindowStreamResponse, error)
	grpc.ClientStream
}

type Window_WindowActiveWindowStreamServer

type Window_WindowActiveWindowStreamServer interface {
	Send(*WindowActiveWindowStreamResponse) error
	grpc.ServerStream
}

type Window_WindowStateStreamClient

type Window_WindowStateStreamClient interface {
	Recv() (*WindowStateStreamResponse, error)
	grpc.ClientStream
}

type Window_WindowStateStreamServer

type Window_WindowStateStreamServer interface {
	Send(*WindowStateStreamResponse) error
	grpc.ServerStream
}

Jump to

Keyboard shortcuts

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