=item * all constructor arguments become object members.
At least initially, when you pass a C<tls>-argument to the constructor it
will end up in C<< $handle->{tls} >>. Those members might be changes or
mutated later on (for example C<tls> will hold the TLS connection object).
=item * other object member names are prefixed with an C<_>.
All object members not explicitly documented (internal use) are prefixed
with an underscore character, so the remaining non-C<_>-namespace is free
for use for subclasses.
=item * all members not documented here and not prefixed with an underscore
are free to use in subclasses.
Of course, new versions of AnyEvent::Handle may introduce more "public"
member variables, but thats just life, at least it is documented.
=back
=head1 AUTHOR
Robin Redeker C<< <elmex at ta-sa.org> >>, Marc Lehmann <schmorp@schmorp.de>.
=cut
1; # End of AnyEvent::Handle
=15=
THE END |