From d3fe82af45356c6474bea6090317ea4ad8d9c952 Mon Sep 17 00:00:00 2001 From: Pedro Melo Date: Sun, 20 Jul 2014 19:52:48 +0100 Subject: [PATCH] Added skel for our Writer class: It connect and identifies just fine, but no API for publishing right now. Signed-off-by: Pedro Melo --- lib/AnyEvent/NSQ/Writer.pm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lib/AnyEvent/NSQ/Writer.pm diff --git a/lib/AnyEvent/NSQ/Writer.pm b/lib/AnyEvent/NSQ/Writer.pm new file mode 100644 index 0000000..90294ed --- /dev/null +++ b/lib/AnyEvent/NSQ/Writer.pm @@ -0,0 +1,14 @@ +package AnyEvent::NSQ::Writer; + +# ABSTRACT: a NSQ.io asynchronous producer +# VERSION +# AUTHORITY + +use strict; +use warnings; +use Carp 'croak'; + +use parent 'AnyEvent::NSQ::Client'; + + +1;