From 0271f14b08a43bb87250de66489d99497b6d86a6 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Mon, 22 Mar 2010 22:33:26 +0100 Subject: [PATCH] Use $self->message in subscribe --- lib/AnyEvent/I3.pm | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/lib/AnyEvent/I3.pm b/lib/AnyEvent/I3.pm index 282f24a5..310fa5ef 100644 --- a/lib/AnyEvent/I3.pm +++ b/lib/AnyEvent/I3.pm @@ -157,24 +157,25 @@ sub _handle_i3_message { Subscribes to the given event types. This function awaits a hashref with the key being the name of the event and the value being a callback. - $i3->subscribe({ + my %callbacks = ( workspace => sub { say "Workspaces changed" } - }); + ); + + if ($i3->subscribe(\%callbacks)->recv->{success}) + say "Successfully subscribed"; + } =cut sub subscribe { my ($self, $callbacks) = @_; - my $payload = encode_json [ keys %{$callbacks} ]; - my $len = length($payload); - my $message = $magic . pack("LL", $len, TYPE_SUBSCRIBE) . $payload; - $self->{ipchdl}->push_write($message); - # Register callbacks for each message type for my $key (keys %{$callbacks}) { my $type = $events{$key}; $self->{callbacks}->{$type} = $callbacks->{$key}; } + + $self->message(TYPE_SUBSCRIBE, [ keys %{$callbacks} ]) } =head2 $i3->message($type, $content) -- 2.39.5