Author: tv Date: Sun Dec 18 17:58:18 2016 New Revision: 1774920 URL: http://svn.apache.org/viewvc?rev=1774920&view=rev Log: Initialization should not be a publicly accessible method
Modified: commons/proper/jcs/trunk/commons-jcs-core/src/main/java/org/apache/commons/jcs/engine/behavior/ICacheEventQueue.java Modified: commons/proper/jcs/trunk/commons-jcs-core/src/main/java/org/apache/commons/jcs/engine/behavior/ICacheEventQueue.java URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/commons-jcs-core/src/main/java/org/apache/commons/jcs/engine/behavior/ICacheEventQueue.java?rev=1774920&r1=1774919&r2=1774920&view=diff ============================================================================== --- commons/proper/jcs/trunk/commons-jcs-core/src/main/java/org/apache/commons/jcs/engine/behavior/ICacheEventQueue.java (original) +++ commons/proper/jcs/trunk/commons-jcs-core/src/main/java/org/apache/commons/jcs/engine/behavior/ICacheEventQueue.java Sun Dec 18 17:58:18 2016 @@ -1,5 +1,7 @@ package org.apache.commons.jcs.engine.behavior; +import java.io.IOException; + /* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file @@ -21,8 +23,6 @@ package org.apache.commons.jcs.engine.be import org.apache.commons.jcs.engine.stats.behavior.IStats; -import java.io.IOException; - /** * Interface for a cache event queue. An event queue is used to propagate * ordered cache events to one and only one target listener. @@ -39,19 +39,6 @@ public interface ICacheEventQueue<K, V> } /** - * Initializes the queue. - * <p> - * @param listener - * @param listenerId - * @param cacheName - * @param maxFailure - * @param waitBeforeRetry - * @param threadPoolName - */ - void initialize( ICacheListener<K, V> listener, long listenerId, String cacheName, int maxFailure, - int waitBeforeRetry, String threadPoolName ); - - /** * Return the type of event queue we are using, either single or pooled. * <p> * @return the queue type: single or pooled