(ctx context.Context, er *proto.ExecuteRequest)
| 68 | // Store defines the local database operations needed by the proxy. |
| 69 | type Store interface { |
| 70 | Execute(ctx context.Context, er *proto.ExecuteRequest) ([]*proto.ExecuteQueryResponse, uint64, error) |
| 71 | Query(ctx context.Context, qr *proto.QueryRequest) ([]*proto.QueryRows, proto.ConsistencyLevel, uint64, error) |
| 72 | Request(ctx context.Context, eqr *proto.ExecuteQueryRequest) ([]*proto.ExecuteQueryResponse, uint64, uint64, error) |
| 73 | Load(ctx context.Context, lr *proto.LoadRequest) error |
no outgoing calls