type RequestV2 …
type RequestV2Handler …
type reqV2HandlerEtcdServer …
type reqV2HandlerStore …
func NewStoreRequestV2Handler(s v2store.Store, applier ApplierV2) RequestV2Handler { … }
func (a *reqV2HandlerStore) Post(ctx context.Context, r *RequestV2) (Response, error) { … }
func (a *reqV2HandlerStore) Put(ctx context.Context, r *RequestV2) (Response, error) { … }
func (a *reqV2HandlerStore) Delete(ctx context.Context, r *RequestV2) (Response, error) { … }
func (a *reqV2HandlerStore) QGet(ctx context.Context, r *RequestV2) (Response, error) { … }
func (a *reqV2HandlerStore) Get(ctx context.Context, r *RequestV2) (Response, error) { … }
func (a *reqV2HandlerStore) Head(ctx context.Context, r *RequestV2) (Response, error) { … }
func (a *reqV2HandlerEtcdServer) Post(ctx context.Context, r *RequestV2) (Response, error) { … }
func (a *reqV2HandlerEtcdServer) Put(ctx context.Context, r *RequestV2) (Response, error) { … }
func (a *reqV2HandlerEtcdServer) Delete(ctx context.Context, r *RequestV2) (Response, error) { … }
func (a *reqV2HandlerEtcdServer) QGet(ctx context.Context, r *RequestV2) (Response, error) { … }
func (a *reqV2HandlerEtcdServer) processRaftRequest(ctx context.Context, r *RequestV2) (Response, error) { … }
func (s *EtcdServer) Do(ctx context.Context, r pb.Request) (Response, error) { … }
func (r *RequestV2) Handle(ctx context.Context, v2api RequestV2Handler) (Response, error) { … }
func (r *RequestV2) String() string { … }