#ifndef _UDPDISPATCHER_
#define _UDPDISPATCHER_

#include "Dispatchers/dispatcher/dispatcher"

class UdpDispatcher: public Dispatcher {
public:
    UdpDispatcher(int fd);
    virtual void execute();
    virtual void dispatch();
    virtual void handle();
private:
    Netbuffer netbuffer;
};

#endif
