/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

  1. note
  2. description: "Summary description for {HTTPD_SERVER_INPUT}."
  3. legal: "See notice at end of class."
  4. status: "See notice at end of class."
  5. date: "$Date$"
  6. revision: "$Revision$"
  7. deferred class
  8. HTTPD_SERVER_INPUT
  9. feature -- Basic operation
  10. read_stream (nb_char: INTEGER)
  11. -- Read a string of at most `nb_char' bound characters
  12. -- or until end of file.
  13. -- Make result available in `last_string'.
  14. require
  15. nb_char_positive: nb_char > 0
  16. deferred
  17. end
  18. feature -- Access
  19. last_string: STRING
  20. -- Last string read
  21. deferred
  22. end
  23. note
  24. copyright: "Copyright (c) 1984-2011, Eiffel Software and others"
  25. license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
  26. source: "[
  27. Eiffel Software
  28. 5949 Hollister Ave., Goleta, CA 93117 USA
  29. Telephone 805-685-1006, Fax 805-685-6869
  30. Website http://www.eiffel.com
  31. Customer support http://support.eiffel.com
  32. ]"
  33. end