Jack Hansdampf / mbed-mqtt-GSOE1

Dependents:   ESP8266MQTT

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers mainGateway.cpp Source File

mainGateway.cpp

00001 /**************************************************************************************
00002  * Copyright (c) 2016, Tomoaki Yamaguchi
00003  *
00004  * All rights reserved. This program and the accompanying materials
00005  * are made available under the terms of the Eclipse Public License v1.0
00006  * and Eclipse Distribution License v1.0 which accompany this distribution.
00007  *
00008  * The Eclipse Public License is available at
00009  *    http://www.eclipse.org/legal/epl-v10.html
00010  * and the Eclipse Distribution License is available at
00011  *   http://www.eclipse.org/org/documents/edl-v10.php.
00012  *
00013  * Contributors:
00014  *    Tomoaki Yamaguchi - initial API and implementation and/or initial documentation
00015  **************************************************************************************/
00016 #include "MQTTSNGateway.h"
00017 #include "MQTTSNGWBrokerRecvTask.h"
00018 #include "MQTTSNGWBrokerSendTask.h"
00019 #include "MQTTSNGWClientRecvTask.h"
00020 #include "MQTTSNGWClientSendTask.h"
00021 #include "MQTTSNGWPacketHandleTask.h"
00022 
00023 using namespace MQTTSNGW;
00024 
00025 /*
00026  *  Gateway Application
00027  */
00028 Gateway gateway;
00029 PacketHandleTask  task1(&gateway);
00030 ClientRecvTask    task2(&gateway);
00031 ClientSendTask    task3(&gateway);
00032 BrokerRecvTask    task4(&gateway);
00033 BrokerSendTask    task5(&gateway);
00034 
00035 int main(int argc, char** argv)
00036 {
00037     gateway.initialize(argc, argv);
00038     gateway.run();
00039     return 0;
00040 }