1. /*
  2. * @(#)ReadTimeouts.java 1.1 04/05/17
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package com.sun.corba.se.spi.transport;
  8. public interface ReadTimeouts {
  9. public int get_initial_time_to_wait();
  10. public int get_max_time_to_wait();
  11. public double get_backoff_factor();
  12. public int get_max_giop_header_time_to_wait();
  13. }
  14. // End of file.