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

NAME

IPC::Door::Client - door client for Solaris (>= 2.6)

SYNOPSIS

    use IPC::Door::Client;

    $door='/path/to/door';

    $dclient = new IPC::Door::Client($door);

    $dclient->call($arg[, $attr]);

DESCRIPTION

IPC::Door::Client is a Perl object class that speaks to an IPC::Door::Server object that is listening to the door associated with the object.

It is a subclass of IPC::Door.

The only unique method, call implicitly calls open(2) (not to be confused with the Perl function open), and you can optionally pass flags for that call. Note that the standard module Fcntl exports useful ones. The default is O_RDWR.

The argument will be evaluated in the scalar context.

SEE ALSO

IPC::Door

AUTHOR

ASARI Hirotsugu <asarih at cpan dot org>

http://www.asari.net/perl

COPYRIGHT AND LICENSE

Copyright 2003-2005 by ASARI Hirotsugu

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.