in reply to Re^2: Perl semi-object without a constructor
in thread Perl semi-object without a constructor
Common Perl convention is that sub/method names beginning with an underscore are to be treated as private. The reason that sub _new_client is structured differently than the other subs in the package is because it's meant for internal use only and is not a part of the public interface.