phil0522_znote

package
v0.0.0-...-abc261f Latest Latest
Warning

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

Go to latest
Published: Apr 25, 2020 License: MIT Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func RegisterYeastServiceServer

func RegisterYeastServiceServer(s *grpc.Server, srv YeastServiceServer)

func RegisterZNoteServiceServer

func RegisterZNoteServiceServer(s *grpc.Server, srv ZNoteServiceServer)

Types

type QuitServerRequest

type QuitServerRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*QuitServerRequest) Descriptor

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

func (*QuitServerRequest) ProtoMessage

func (*QuitServerRequest) ProtoMessage()

func (*QuitServerRequest) Reset

func (m *QuitServerRequest) Reset()

func (*QuitServerRequest) String

func (m *QuitServerRequest) String() string

func (*QuitServerRequest) XXX_DiscardUnknown

func (m *QuitServerRequest) XXX_DiscardUnknown()

func (*QuitServerRequest) XXX_Marshal

func (m *QuitServerRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QuitServerRequest) XXX_Merge

func (m *QuitServerRequest) XXX_Merge(src proto.Message)

func (*QuitServerRequest) XXX_Size

func (m *QuitServerRequest) XXX_Size() int

func (*QuitServerRequest) XXX_Unmarshal

func (m *QuitServerRequest) XXX_Unmarshal(b []byte) error

type QuitServerResponse

type QuitServerResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*QuitServerResponse) Descriptor

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

func (*QuitServerResponse) ProtoMessage

func (*QuitServerResponse) ProtoMessage()

func (*QuitServerResponse) Reset

func (m *QuitServerResponse) Reset()

func (*QuitServerResponse) String

func (m *QuitServerResponse) String() string

func (*QuitServerResponse) XXX_DiscardUnknown

func (m *QuitServerResponse) XXX_DiscardUnknown()

func (*QuitServerResponse) XXX_Marshal

func (m *QuitServerResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QuitServerResponse) XXX_Merge

func (m *QuitServerResponse) XXX_Merge(src proto.Message)

func (*QuitServerResponse) XXX_Size

func (m *QuitServerResponse) XXX_Size() int

func (*QuitServerResponse) XXX_Unmarshal

func (m *QuitServerResponse) XXX_Unmarshal(b []byte) error

type UnimplementedYeastServiceServer

type UnimplementedYeastServiceServer struct {
}

UnimplementedYeastServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedYeastServiceServer) ListNotes

func (*UnimplementedYeastServiceServer) ListTags

func (*UnimplementedYeastServiceServer) UpsertNote

func (*UnimplementedYeastServiceServer) UpsertTag

type UnimplementedZNoteServiceServer

type UnimplementedZNoteServiceServer struct {
}

UnimplementedZNoteServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedZNoteServiceServer) ExecuteCommand

func (*UnimplementedZNoteServiceServer) QuitServer

type YNote

type YNote struct {
	Id                   string               `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Title                string               `protobuf:"bytes,2,opt,name=title,proto3" json:"title,omitempty"`
	Summary              string               `protobuf:"bytes,3,opt,name=summary,proto3" json:"summary,omitempty"`
	Content              string               `protobuf:"bytes,4,opt,name=content,proto3" json:"content,omitempty"`
	Tags                 []string             `protobuf:"bytes,5,rep,name=tags,proto3" json:"tags,omitempty"`
	ImplicitTags         []string             `protobuf:"bytes,6,rep,name=implicit_tags,json=implicitTags,proto3" json:"implicit_tags,omitempty"`
	CreatedTime          *timestamp.Timestamp `protobuf:"bytes,7,opt,name=created_time,json=createdTime,proto3" json:"created_time,omitempty"`
	UpdatedTime          *timestamp.Timestamp `protobuf:"bytes,8,opt,name=updated_time,json=updatedTime,proto3" json:"updated_time,omitempty"`
	Archived             bool                 `protobuf:"varint,9,opt,name=archived,proto3" json:"archived,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*YNote) Descriptor

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

func (*YNote) GetArchived

func (m *YNote) GetArchived() bool

func (*YNote) GetContent

func (m *YNote) GetContent() string

func (*YNote) GetCreatedTime

func (m *YNote) GetCreatedTime() *timestamp.Timestamp

func (*YNote) GetId

func (m *YNote) GetId() string

func (*YNote) GetImplicitTags

func (m *YNote) GetImplicitTags() []string

func (*YNote) GetSummary

func (m *YNote) GetSummary() string

func (*YNote) GetTags

func (m *YNote) GetTags() []string

func (*YNote) GetTitle

func (m *YNote) GetTitle() string

func (*YNote) GetUpdatedTime

func (m *YNote) GetUpdatedTime() *timestamp.Timestamp

func (*YNote) ProtoMessage

func (*YNote) ProtoMessage()

func (*YNote) Reset

func (m *YNote) Reset()

func (*YNote) String

func (m *YNote) String() string

func (*YNote) XXX_DiscardUnknown

func (m *YNote) XXX_DiscardUnknown()

func (*YNote) XXX_Marshal

func (m *YNote) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*YNote) XXX_Merge

func (m *YNote) XXX_Merge(src proto.Message)

func (*YNote) XXX_Size

func (m *YNote) XXX_Size() int

func (*YNote) XXX_Unmarshal

func (m *YNote) XXX_Unmarshal(b []byte) error

type YTag

type YTag struct {
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// archived is not shown in suggestion list.
	Archived bool `protobuf:"varint,2,opt,name=archived,proto3" json:"archived,omitempty"`
	// Other tags the tag should also be considered to be.
	ImplicitTags         []string `protobuf:"bytes,3,rep,name=implicit_tags,json=implicitTags,proto3" json:"implicit_tags,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*YTag) Descriptor

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

func (*YTag) GetArchived

func (m *YTag) GetArchived() bool

func (*YTag) GetImplicitTags

func (m *YTag) GetImplicitTags() []string

func (*YTag) GetName

func (m *YTag) GetName() string

func (*YTag) ProtoMessage

func (*YTag) ProtoMessage()

func (*YTag) Reset

func (m *YTag) Reset()

func (*YTag) String

func (m *YTag) String() string

func (*YTag) XXX_DiscardUnknown

func (m *YTag) XXX_DiscardUnknown()

func (*YTag) XXX_Marshal

func (m *YTag) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*YTag) XXX_Merge

func (m *YTag) XXX_Merge(src proto.Message)

func (*YTag) XXX_Size

func (m *YTag) XXX_Size() int

func (*YTag) XXX_Unmarshal

func (m *YTag) XXX_Unmarshal(b []byte) error

type YeastListNoteRequest

type YeastListNoteRequest struct {
	// How the response will be used, by default, only recently notes be retruned
	// No content is returned.
	Usage                string   `protobuf:"bytes,1,opt,name=usage,proto3" json:"usage,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*YeastListNoteRequest) Descriptor

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

func (*YeastListNoteRequest) GetUsage

func (m *YeastListNoteRequest) GetUsage() string

func (*YeastListNoteRequest) ProtoMessage

func (*YeastListNoteRequest) ProtoMessage()

func (*YeastListNoteRequest) Reset

func (m *YeastListNoteRequest) Reset()

func (*YeastListNoteRequest) String

func (m *YeastListNoteRequest) String() string

func (*YeastListNoteRequest) XXX_DiscardUnknown

func (m *YeastListNoteRequest) XXX_DiscardUnknown()

func (*YeastListNoteRequest) XXX_Marshal

func (m *YeastListNoteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*YeastListNoteRequest) XXX_Merge

func (m *YeastListNoteRequest) XXX_Merge(src proto.Message)

func (*YeastListNoteRequest) XXX_Size

func (m *YeastListNoteRequest) XXX_Size() int

func (*YeastListNoteRequest) XXX_Unmarshal

func (m *YeastListNoteRequest) XXX_Unmarshal(b []byte) error

type YeastListNoteResponse

type YeastListNoteResponse struct {
	Ynote                []*YNote `protobuf:"bytes,1,rep,name=ynote,proto3" json:"ynote,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*YeastListNoteResponse) Descriptor

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

func (*YeastListNoteResponse) GetYnote

func (m *YeastListNoteResponse) GetYnote() []*YNote

func (*YeastListNoteResponse) ProtoMessage

func (*YeastListNoteResponse) ProtoMessage()

func (*YeastListNoteResponse) Reset

func (m *YeastListNoteResponse) Reset()

func (*YeastListNoteResponse) String

func (m *YeastListNoteResponse) String() string

func (*YeastListNoteResponse) XXX_DiscardUnknown

func (m *YeastListNoteResponse) XXX_DiscardUnknown()

func (*YeastListNoteResponse) XXX_Marshal

func (m *YeastListNoteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*YeastListNoteResponse) XXX_Merge

func (m *YeastListNoteResponse) XXX_Merge(src proto.Message)

func (*YeastListNoteResponse) XXX_Size

func (m *YeastListNoteResponse) XXX_Size() int

func (*YeastListNoteResponse) XXX_Unmarshal

func (m *YeastListNoteResponse) XXX_Unmarshal(b []byte) error

type YeastListTagsRequest

type YeastListTagsRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*YeastListTagsRequest) Descriptor

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

func (*YeastListTagsRequest) ProtoMessage

func (*YeastListTagsRequest) ProtoMessage()

func (*YeastListTagsRequest) Reset

func (m *YeastListTagsRequest) Reset()

func (*YeastListTagsRequest) String

func (m *YeastListTagsRequest) String() string

func (*YeastListTagsRequest) XXX_DiscardUnknown

func (m *YeastListTagsRequest) XXX_DiscardUnknown()

func (*YeastListTagsRequest) XXX_Marshal

func (m *YeastListTagsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*YeastListTagsRequest) XXX_Merge

func (m *YeastListTagsRequest) XXX_Merge(src proto.Message)

func (*YeastListTagsRequest) XXX_Size

func (m *YeastListTagsRequest) XXX_Size() int

func (*YeastListTagsRequest) XXX_Unmarshal

func (m *YeastListTagsRequest) XXX_Unmarshal(b []byte) error

type YeastListTagsResponse

type YeastListTagsResponse struct {
	Ytag                 []*YTag  `protobuf:"bytes,1,rep,name=ytag,proto3" json:"ytag,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*YeastListTagsResponse) Descriptor

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

func (*YeastListTagsResponse) GetYtag

func (m *YeastListTagsResponse) GetYtag() []*YTag

func (*YeastListTagsResponse) ProtoMessage

func (*YeastListTagsResponse) ProtoMessage()

func (*YeastListTagsResponse) Reset

func (m *YeastListTagsResponse) Reset()

func (*YeastListTagsResponse) String

func (m *YeastListTagsResponse) String() string

func (*YeastListTagsResponse) XXX_DiscardUnknown

func (m *YeastListTagsResponse) XXX_DiscardUnknown()

func (*YeastListTagsResponse) XXX_Marshal

func (m *YeastListTagsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*YeastListTagsResponse) XXX_Merge

func (m *YeastListTagsResponse) XXX_Merge(src proto.Message)

func (*YeastListTagsResponse) XXX_Size

func (m *YeastListTagsResponse) XXX_Size() int

func (*YeastListTagsResponse) XXX_Unmarshal

func (m *YeastListTagsResponse) XXX_Unmarshal(b []byte) error

type YeastServiceClient

YeastServiceClient is the client API for YeastService service.

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

type YeastServiceServer

YeastServiceServer is the server API for YeastService service.

type YeastUpsertNoteRequest

type YeastUpsertNoteRequest struct {
	Ynote                *YNote   `protobuf:"bytes,1,opt,name=ynote,proto3" json:"ynote,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*YeastUpsertNoteRequest) Descriptor

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

func (*YeastUpsertNoteRequest) GetYnote

func (m *YeastUpsertNoteRequest) GetYnote() *YNote

func (*YeastUpsertNoteRequest) ProtoMessage

func (*YeastUpsertNoteRequest) ProtoMessage()

func (*YeastUpsertNoteRequest) Reset

func (m *YeastUpsertNoteRequest) Reset()

func (*YeastUpsertNoteRequest) String

func (m *YeastUpsertNoteRequest) String() string

func (*YeastUpsertNoteRequest) XXX_DiscardUnknown

func (m *YeastUpsertNoteRequest) XXX_DiscardUnknown()

func (*YeastUpsertNoteRequest) XXX_Marshal

func (m *YeastUpsertNoteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*YeastUpsertNoteRequest) XXX_Merge

func (m *YeastUpsertNoteRequest) XXX_Merge(src proto.Message)

func (*YeastUpsertNoteRequest) XXX_Size

func (m *YeastUpsertNoteRequest) XXX_Size() int

func (*YeastUpsertNoteRequest) XXX_Unmarshal

func (m *YeastUpsertNoteRequest) XXX_Unmarshal(b []byte) error

type YeastUpsertNoteResponse

type YeastUpsertNoteResponse struct {
	Status               string   `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*YeastUpsertNoteResponse) Descriptor

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

func (*YeastUpsertNoteResponse) GetStatus

func (m *YeastUpsertNoteResponse) GetStatus() string

func (*YeastUpsertNoteResponse) ProtoMessage

func (*YeastUpsertNoteResponse) ProtoMessage()

func (*YeastUpsertNoteResponse) Reset

func (m *YeastUpsertNoteResponse) Reset()

func (*YeastUpsertNoteResponse) String

func (m *YeastUpsertNoteResponse) String() string

func (*YeastUpsertNoteResponse) XXX_DiscardUnknown

func (m *YeastUpsertNoteResponse) XXX_DiscardUnknown()

func (*YeastUpsertNoteResponse) XXX_Marshal

func (m *YeastUpsertNoteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*YeastUpsertNoteResponse) XXX_Merge

func (m *YeastUpsertNoteResponse) XXX_Merge(src proto.Message)

func (*YeastUpsertNoteResponse) XXX_Size

func (m *YeastUpsertNoteResponse) XXX_Size() int

func (*YeastUpsertNoteResponse) XXX_Unmarshal

func (m *YeastUpsertNoteResponse) XXX_Unmarshal(b []byte) error

type YeastUpsertTagRequest

type YeastUpsertTagRequest struct {
	Ytag                 *YTag    `protobuf:"bytes,1,opt,name=ytag,proto3" json:"ytag,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*YeastUpsertTagRequest) Descriptor

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

func (*YeastUpsertTagRequest) GetYtag

func (m *YeastUpsertTagRequest) GetYtag() *YTag

func (*YeastUpsertTagRequest) ProtoMessage

func (*YeastUpsertTagRequest) ProtoMessage()

func (*YeastUpsertTagRequest) Reset

func (m *YeastUpsertTagRequest) Reset()

func (*YeastUpsertTagRequest) String

func (m *YeastUpsertTagRequest) String() string

func (*YeastUpsertTagRequest) XXX_DiscardUnknown

func (m *YeastUpsertTagRequest) XXX_DiscardUnknown()

func (*YeastUpsertTagRequest) XXX_Marshal

func (m *YeastUpsertTagRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*YeastUpsertTagRequest) XXX_Merge

func (m *YeastUpsertTagRequest) XXX_Merge(src proto.Message)

func (*YeastUpsertTagRequest) XXX_Size

func (m *YeastUpsertTagRequest) XXX_Size() int

func (*YeastUpsertTagRequest) XXX_Unmarshal

func (m *YeastUpsertTagRequest) XXX_Unmarshal(b []byte) error

type YeastUpsertTagResponse

type YeastUpsertTagResponse struct {
	Status               string   `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*YeastUpsertTagResponse) Descriptor

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

func (*YeastUpsertTagResponse) GetStatus

func (m *YeastUpsertTagResponse) GetStatus() string

func (*YeastUpsertTagResponse) ProtoMessage

func (*YeastUpsertTagResponse) ProtoMessage()

func (*YeastUpsertTagResponse) Reset

func (m *YeastUpsertTagResponse) Reset()

func (*YeastUpsertTagResponse) String

func (m *YeastUpsertTagResponse) String() string

func (*YeastUpsertTagResponse) XXX_DiscardUnknown

func (m *YeastUpsertTagResponse) XXX_DiscardUnknown()

func (*YeastUpsertTagResponse) XXX_Marshal

func (m *YeastUpsertTagResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*YeastUpsertTagResponse) XXX_Merge

func (m *YeastUpsertTagResponse) XXX_Merge(src proto.Message)

func (*YeastUpsertTagResponse) XXX_Size

func (m *YeastUpsertTagResponse) XXX_Size() int

func (*YeastUpsertTagResponse) XXX_Unmarshal

func (m *YeastUpsertTagResponse) XXX_Unmarshal(b []byte) error

type ZNoteRequest

type ZNoteRequest struct {
	Command              string   `protobuf:"bytes,1,opt,name=command,proto3" json:"command,omitempty"`
	Book                 string   `protobuf:"bytes,2,opt,name=book,proto3" json:"book,omitempty"`
	NoteId               string   `protobuf:"bytes,3,opt,name=note_id,json=noteId,proto3" json:"note_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ZNoteRequest) Descriptor

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

func (*ZNoteRequest) GetBook

func (m *ZNoteRequest) GetBook() string

func (*ZNoteRequest) GetCommand

func (m *ZNoteRequest) GetCommand() string

func (*ZNoteRequest) GetNoteId

func (m *ZNoteRequest) GetNoteId() string

func (*ZNoteRequest) ProtoMessage

func (*ZNoteRequest) ProtoMessage()

func (*ZNoteRequest) Reset

func (m *ZNoteRequest) Reset()

func (*ZNoteRequest) String

func (m *ZNoteRequest) String() string

func (*ZNoteRequest) XXX_DiscardUnknown

func (m *ZNoteRequest) XXX_DiscardUnknown()

func (*ZNoteRequest) XXX_Marshal

func (m *ZNoteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ZNoteRequest) XXX_Merge

func (m *ZNoteRequest) XXX_Merge(src proto.Message)

func (*ZNoteRequest) XXX_Size

func (m *ZNoteRequest) XXX_Size() int

func (*ZNoteRequest) XXX_Unmarshal

func (m *ZNoteRequest) XXX_Unmarshal(b []byte) error

type ZNoteResponse

type ZNoteResponse struct {
	Result               string   `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ZNoteResponse) Descriptor

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

func (*ZNoteResponse) GetResult

func (m *ZNoteResponse) GetResult() string

func (*ZNoteResponse) ProtoMessage

func (*ZNoteResponse) ProtoMessage()

func (*ZNoteResponse) Reset

func (m *ZNoteResponse) Reset()

func (*ZNoteResponse) String

func (m *ZNoteResponse) String() string

func (*ZNoteResponse) XXX_DiscardUnknown

func (m *ZNoteResponse) XXX_DiscardUnknown()

func (*ZNoteResponse) XXX_Marshal

func (m *ZNoteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ZNoteResponse) XXX_Merge

func (m *ZNoteResponse) XXX_Merge(src proto.Message)

func (*ZNoteResponse) XXX_Size

func (m *ZNoteResponse) XXX_Size() int

func (*ZNoteResponse) XXX_Unmarshal

func (m *ZNoteResponse) XXX_Unmarshal(b []byte) error

type ZNoteServiceClient

type ZNoteServiceClient interface {
	ExecuteCommand(ctx context.Context, in *ZNoteRequest, opts ...grpc.CallOption) (*ZNoteResponse, error)
	QuitServer(ctx context.Context, in *QuitServerRequest, opts ...grpc.CallOption) (*QuitServerResponse, error)
}

ZNoteServiceClient is the client API for ZNoteService service.

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

type ZNoteServiceServer

type ZNoteServiceServer interface {
	ExecuteCommand(context.Context, *ZNoteRequest) (*ZNoteResponse, error)
	QuitServer(context.Context, *QuitServerRequest) (*QuitServerResponse, error)
}

ZNoteServiceServer is the server API for ZNoteService service.

Jump to

Keyboard shortcuts

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