Skip to content

Commit

Permalink
HashMap -> CocurrentHashMap (https://issues.redhat.com/browse/JGRP-2749)
Browse files Browse the repository at this point in the history
  • Loading branch information
belaban committed Jan 23, 2024
1 parent 346e41a commit a31aa6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/jgroups/protocols/UNICAST3.java
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public class UNICAST3 extends Protocol implements AgeOutCache.Handler<Address> {

/** Used by the retransmit task to keep the last retransmitted seqno per member (applicable only
* for received messages (ReceiverEntry)): https://issues.redhat.com/browse/JGRP-1539 */
protected final Map<Address,Long> xmit_task_map=new HashMap<>();
protected final Map<Address,Long> xmit_task_map=new ConcurrentHashMap<>();

/** RetransmitTask running every xmit_interval ms */
protected Future<?> xmit_task;
Expand Down

0 comments on commit a31aa6a

Please sign in to comment.