stasis-bLSM/simpleServer.h
sears 6f82ae268a remove more template stuff
git-svn-id: svn+ssh://svn.corp.yahoo.com/yahoo/yrl/labs/pnuts/code/logstore@2668 8dad8b1f-cf64-0410-95b6-bcf113ffbcfe
2011-06-09 01:16:55 +00:00

31 lines
630 B
C++

/*
* simpleServer.h
*
* Created on: Aug 11, 2010
* Author: sears
*/
#ifndef SIMPLESERVER_H_
#define SIMPLESERVER_H_
#include "logstore.h"
class simpleServer {
public:
void* worker(int /*handle*/);
static const int DEFAULT_PORT = 32432;
static const int DEFAULT_THREADS = 1000;
simpleServer(logtable * ltable, int max_threads = DEFAULT_THREADS, int port = DEFAULT_PORT);
bool acceptLoop();
~simpleServer();
private:
logtable* ltable;
int port;
int max_threads;
int * thread_fd;
pthread_cond_t * thread_cond;
pthread_mutex_t * thread_mut;
pthread_t * thread;
};
#endif /* SIMPLESERVER_H_ */