Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/soh335/cocoa-nsdistributednotificationcenter
perl interface for NSDistributedNotificationCenter
https://github.com/soh335/cocoa-nsdistributednotificationcenter
Last synced: 14 days ago
JSON representation
perl interface for NSDistributedNotificationCenter
- Host: GitHub
- URL: https://github.com/soh335/cocoa-nsdistributednotificationcenter
- Owner: soh335
- License: other
- Created: 2012-12-16T05:01:43.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2012-12-16T05:12:54.000Z (almost 12 years ago)
- Last Synced: 2024-10-11T21:11:57.085Z (about 1 month ago)
- Language: Perl
- Size: 121 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: Changes
- License: LICENSE
Awesome Lists containing this project
README
NAME
Cocoa::NSDistributedNotificationCenter - Perl interface for
NSDistributedNotificationCenterSYNOPSIS
use Cocoa::NSDistributedNotificationCenter;
use Cocoa::EventLoop;my $ns_center = Cocoa::NSDistributedNotificationCenter->new;
$ns_center->listen('com.apple.iTunes.playerInfo', sub {
my $info = shift;
warn $info->{Artist};
});Cocoa::EventLoop->run;