/library/server/httpd/interface/stream/httpd_server_input.e
http://github.com/jocelyn/EiffelWebReloaded · Specman e · 39 lines · 29 code · 6 blank · 4 comment · 1 complexity · 28c5ef8e1aa5317d7fd093f7501aa321 MD5 · raw file
- note
- description: "Summary description for {HTTPD_SERVER_INPUT}."
- legal: "See notice at end of class."
- status: "See notice at end of class."
- date: "$Date$"
- revision: "$Revision$"
-
- deferred class
- HTTPD_SERVER_INPUT
-
- feature -- Basic operation
-
- read_stream (nb_char: INTEGER)
- -- Read a string of at most `nb_char' bound characters
- -- or until end of file.
- -- Make result available in `last_string'.
- require
- nb_char_positive: nb_char > 0
- deferred
- end
-
- feature -- Access
-
- last_string: STRING
- -- Last string read
- deferred
- end
-
- note
- copyright: "Copyright (c) 1984-2011, Eiffel Software and others"
- license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
- source: "[
- Eiffel Software
- 5949 Hollister Ave., Goleta, CA 93117 USA
- Telephone 805-685-1006, Fax 805-685-6869
- Website http://www.eiffel.com
- Customer support http://support.eiffel.com
- ]"
- end