Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_index_QueryTimeoutImpl_H
#define org_apache_lucene_index_QueryTimeoutImpl_H
#include "java/lang/Object.h"
namespace java {
namespace lang {
class String;
class Class;
class Long;
}
}
namespace org {
namespace apache {
namespace lucene {
namespace index {
class QueryTimeout;
}
}
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace index {
class QueryTimeoutImpl : public ::java::lang::Object {
public:
enum {
mid_init$_ea21977c7b14e0c0,
mid_getTimeoutAt_42b9eea64d7c47e2,
mid_reset_d7775b228e076e62,
mid_shouldExit_c20c2fcd6b89d9a9,
mid_toString_a6d454b6117bc1ba,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit QueryTimeoutImpl(jobject obj) : ::java::lang::Object(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
QueryTimeoutImpl(const QueryTimeoutImpl& obj) : ::java::lang::Object(obj) {}
QueryTimeoutImpl(jlong);
::java::lang::Long getTimeoutAt() const;
void reset() const;
jboolean shouldExit() const;
::java::lang::String toString() const;
};
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace index {
extern PyType_Def PY_TYPE_DEF(QueryTimeoutImpl);
extern PyTypeObject *PY_TYPE(QueryTimeoutImpl);
class t_QueryTimeoutImpl {
public:
PyObject_HEAD
QueryTimeoutImpl object;
static PyObject *wrap_Object(const QueryTimeoutImpl&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
#endif