Classes Clusters Cluster hierarchy Relations Contracts Flat contracts Go to:
indexing description: "Logging appender that writes to a TCP socket." project: "Project Goanna <http://sourceforge.net/projects/goanna>" library: "log4e" date: "$Date$" revision: "$Revision$" author: "Glenn Maughan <glennmaughan@goanna.info>" copyright: "Copyright (c) 2002 Glenn Maughan" license: "Eiffel Forum License v1 (see forum.txt)." class interface L4E_SOCKET_APPENDER create make feature -- Initialization make (new_name, new_host: STRING; new_port: INTEGER) -- Initialise socket appender that will send events to -- the TCP socket server listening at 'host' on 'port'. require name_exists: new_name /= void host_exists: new_host /= void sensible_port: new_port > 0 feature -- Status Setting close -- Release any resources for this appender. feature -- Removal dispose -- Close this appender when garbage collected. Perform -- minimal operations to release resources. Do not call -- other object as they may have been garbage collected. end -- class L4E_SOCKET_APPENDER
Classes Clusters Cluster hierarchy Relations Contracts Flat contracts Go to:

Goanna Log4E -- Copyright © 2002 Glenn Maughan