1 24 25 package org.objectweb.dream.channel; 26 27 import org.objectweb.fractal.api.control.AttributeController; 28 29 33 public interface IPSocketManagerTCPAttributeController 34 extends 35 AttributeController 36 { 37 38 int CNX_RETRY_DEFAULT = 5; 39 40 46 int getCnxRetry(); 47 48 53 void setCnxRetry(int cnxRetry); 54 55 62 boolean getTcpNoDelay(); 63 64 70 void setTcpNoDelay(boolean tcpNoDelay); 71 72 78 int getSoTimeout(); 79 80 86 void setSoTimeout(int timeout); 87 88 95 int getSoLinger(); 96 97 102 void setSoLinger(int timeout); 103 } | Popular Tags |