You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2013/12/13 13:43:26 UTC

svn commit: r1550713 - /manifoldcf/branches/CONNECTORS-829/framework/core/src/main/java/org/apache/manifoldcf/core/throttler/Throttler.java

Author: kwright
Date: Fri Dec 13 12:43:25 2013
New Revision: 1550713

URL: http://svn.apache.org/r1550713
Log:
Add bin hashes

Modified:
    manifoldcf/branches/CONNECTORS-829/framework/core/src/main/java/org/apache/manifoldcf/core/throttler/Throttler.java

Modified: manifoldcf/branches/CONNECTORS-829/framework/core/src/main/java/org/apache/manifoldcf/core/throttler/Throttler.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-829/framework/core/src/main/java/org/apache/manifoldcf/core/throttler/Throttler.java?rev=1550713&r1=1550712&r2=1550713&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-829/framework/core/src/main/java/org/apache/manifoldcf/core/throttler/Throttler.java (original)
+++ manifoldcf/branches/CONNECTORS-829/framework/core/src/main/java/org/apache/manifoldcf/core/throttler/Throttler.java Fri Dec 13 12:43:25 2013
@@ -255,6 +255,13 @@ public class Throttler
     /** The current throttle spec */
     protected IThrottleSpec throttleSpec;
     
+    /** The connection bins */
+    protected final Map<String,ConnectionBin> connectionBins = new HashMap<String,ConnectionBin>();
+    /** The fetch bins */
+    protected final Map<String,FetchBin> fetchBins = new HashMap<String,FetchBin>();
+    /** The throttle bins */
+    protected final Map<String,ThrottleBin> throttleBins = new HashMap<String,ThrottleBin>();
+
     /** Constructor
     */
     public ThrottlingGroup(IThreadContext threadContext, String throttlingGroupType, String throttleGroup, IThrottleSpec throttleSpec)