コード例 #1
0
ファイル: UNICAST2.java プロジェクト: xiangxuner/JGroups
 @Property(
     description =
         "Max number of milliseconds we try to retransmit a message to any given member. After that, "
             + "the connection is removed. Any new connection to that member will start with seqno #1 again. 0 disables this")
 public void setMaxRetransmitTime(long max_retransmit_time) {
   this.max_retransmit_time = max_retransmit_time;
   if (cache != null && max_retransmit_time > 0) cache.setTimeout(max_retransmit_time);
 }