The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Skype::Any::Command - Command interface for Skype::Any

METHODS

$command->reply([$expected])

Skype API doesn't guarantee an immediate response. When this method is called, (blocking) wait for a reply.

  print $skype->api->send_command('SEARCH RECENTCHATS')->reply;
$command->split_reply([$limit])

Return a list of commands which is split. $limit is by default 4.

  my ($obj, $id, $property, $value) = $command->split_reply();