stasis-bLSM/tcpclient.h
sears a1f3f92cca added bulk-insert APIs, prevent c1-c2 from outrunning c0-c1 by too much, and fix the overshoot computations in merge manager (roughly corresponds to run 20)
git-svn-id: svn+ssh://svn.corp.yahoo.com/yahoo/yrl/labs/pnuts/code/logstore@1074 8dad8b1f-cf64-0410-95b6-bcf113ffbcfe
2010-08-30 22:22:25 +00:00

32 lines
852 B
C

/*
* tcpclient.h
*
* Created on: Feb 2, 2010
* Author: sears
*/
#ifndef TCPCLIENT_H_
#define TCPCLIENT_H_
#include "datatuple.h"
typedef struct logstore_handle_t logstore_handle_t;
logstore_handle_t * logstore_client_open(const char *host, int portnum, int timeout);
datatuple * logstore_client_op(logstore_handle_t* l,
uint8_t opcode,
datatuple *tuple = NULL, datatuple *tuple2 = NULL,
uint64_t count = (uint64_t)-1);
uint8_t logstore_client_op_returns_many(logstore_handle_t *l,
uint8_t opcode,
datatuple * tuple = NULL, datatuple * tuple2 = NULL,
uint64_t count = (uint64_t)-1);
datatuple * logstore_client_next_tuple(logstore_handle_t *l);
uint8_t logstore_client_send_tuple(logstore_handle_t *l, datatuple *tuple = NULL);
int logstore_client_close(logstore_handle_t* l);
#endif /* TCPCLIENT_H_ */