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 8 package com.sun.corba.se.spi.transport; 9 10 public interface ReadTimeouts { 11 public int get_initial_time_to_wait(); 12 public int get_max_time_to_wait(); 13 public double get_backoff_factor(); 14 public int get_max_giop_header_time_to_wait(); 15 } 16 17 // End of file. 18