mirror of https://github.com/apache/lucene.git
SOLR-8190: Implement Closeable on TupleStream
This commit is contained in:
parent
360051a414
commit
739b81063e
|
@ -242,6 +242,8 @@ Other Changes
|
|||
* SOLR-5209: Unloading or deleting the last replica of a shard now no longer
|
||||
cascades to remove the shard from the clusterstate. (Christine Poerschke)
|
||||
|
||||
* SOLR-8190: Implement Closeable on TupleStream (Kevin Risden, Joel Bernstein)
|
||||
|
||||
======================= 5.6.0 =======================
|
||||
(No Changes)
|
||||
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
*/
|
||||
package org.apache.solr.client.solrj.io.stream;
|
||||
|
||||
import java.io.Closeable;
|
||||
import java.io.IOException;
|
||||
import java.io.Serializable;
|
||||
import java.io.Writer;
|
||||
|
@ -25,7 +26,7 @@ import org.apache.solr.client.solrj.io.Tuple;
|
|||
import org.apache.solr.client.solrj.io.comp.StreamComparator;
|
||||
|
||||
|
||||
public abstract class TupleStream implements Serializable {
|
||||
public abstract class TupleStream implements Closeable, Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1;
|
||||
|
||||
|
|
Loading…
Reference in New Issue