Skip to content

Instantly share code, notes, and snippets.

View netanelrevah's full-sized avatar
🛰️
%20

Netanel Revah netanelrevah

🛰️
%20
View GitHub Profile
@netanelrevah
netanelrevah / WorkCompletionQueue
Created April 22, 2015 15:39
This is a queue for tracking works completion status and order.
package org.code.museum;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import java.util.List;
import java.util.Map;
import java.util.SortedMap;
public class WorkCompletionQueue {