Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

15
LINES

< > BotCompany Repo | #1009419 // SynchronizedSet

JavaX fragment (include)

sclass SynchronizedSet<A> extends SynchronizedCollection<A> implements Set<A> {
  *() {} // for persistence
  *(Set<A> set) { super(set); }
  *(Set<A> set, O mutex) { super(set, mutex); }
  
  public boolean equals(Object o) {
      if (this == o)
          return true;
      synchronized (this) {return c.equals(o);}
  }
  
  public int hashCode() {
      synchronized (this) {return c.hashCode();}
  }
}

Author comment

Began life as a copy of #1009418

download  show line numbers  debug dex  old transpilations   

Travelled to 17 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, imzmzdywqqli, ishqpsrjomds, jtubtzbbkimh, lpdgvwnxivlt, mqqgnosmbjvj, onxytkatvevr, ppjhyzlbdabe, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1009419
Snippet name: SynchronizedSet
Eternal ID of this version: #1009419/4
Text MD5: e54eb2741e0123f4adc110242824d5f7
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2017-11-23 12:04:23
Source code size: 420 bytes / 15 lines
Pitched / IR pitched: No / No
Views / Downloads: 416 / 2300
Version history: 3 change(s)
Referenced in: [show references]