blob: d20cd2982f68a0e6a2033bcdec688fe0ddec087e [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef __ROCKETMQ_PRODUCER_H__
#define __ROCKETMQ_PRODUCER_H__
#include <CProducer.h>
#include <nan.h>
namespace __node_rocketmq__ {
using v8::Context;
using v8::Function;
using v8::FunctionTemplate;
using v8::Isolate;
using v8::Local;
using v8::Object;
using v8::String;
using v8::Value;
class RocketMQProducer : public Nan::ObjectWrap {
public:
static NAN_MODULE_INIT(Init);
public:
CProducer* GetProducer() { return producer_ptr; }
private:
explicit RocketMQProducer(const char* group_id, const char* instance_name);
~RocketMQProducer();
static NAN_METHOD(New);
static NAN_METHOD(Start);
static NAN_METHOD(Shutdown);
static NAN_METHOD(Send);
static NAN_METHOD(SetSessionCredentials);
static Nan::Persistent<Function> constructor;
private:
void SetOptions(Local<Object> options);
private:
CProducer* producer_ptr;
};
}
#endif