You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ab...@apache.org on 2019/12/04 10:14:15 UTC

[lucene-solr] branch branch_8x updated: SOLR-13981: Remove unused DistributedQueue interface. (Andras Salamon)

This is an automated email from the ASF dual-hosted git repository.

ab pushed a commit to branch branch_8x
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/branch_8x by this push:
     new 6ebe4d1  SOLR-13981: Remove unused DistributedQueue interface. (Andras Salamon)
6ebe4d1 is described below

commit 6ebe4d16d276c665c260b9b28484900aadd7fa38
Author: Andrzej Bialecki <ab...@apache.org>
AuthorDate: Wed Dec 4 11:12:36 2019 +0100

    SOLR-13981: Remove unused DistributedQueue interface. (Andras Salamon)
---
 .../apache/solr/common/cloud/DistributedQueue.java | 42 ----------------------
 1 file changed, 42 deletions(-)

diff --git a/solr/solrj/src/java/org/apache/solr/common/cloud/DistributedQueue.java b/solr/solrj/src/java/org/apache/solr/common/cloud/DistributedQueue.java
deleted file mode 100644
index 6ae2ce1..0000000
--- a/solr/solrj/src/java/org/apache/solr/common/cloud/DistributedQueue.java
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.solr.common.cloud;
-
-import java.util.Collection;
-import java.util.function.Predicate;
-
-import org.apache.solr.common.util.Pair;
-
-public interface DistributedQueue {
-  byte[] peek() throws Exception;
-
-  byte[] peek(boolean block) throws Exception;
-
-  byte[] peek(long wait) throws Exception;
-
-  byte[] poll() throws Exception;
-
-  byte[] remove() throws Exception;
-
-  byte[] take() throws Exception;
-
-  void offer(byte[] data) throws Exception;
-
-  Collection<Pair<String, byte[]>> peekElements(int max, long waitMillis, Predicate<String> acceptFilter) throws Exception;
-
-  void remove(Collection<String> paths) throws Exception;
-}