Lucene.Net.Analysis.CharFilter.Ready C# (CSharp) 메소드

Ready() 공개 메소드

Tells whether this stream is ready to be read. True if the next read() is guaranteed not to block for input, false otherwise. Note that returning false does not guarantee that the next read will block. LUCENENET specific. Moved here from the Java Reader class so it can be overridden to provide reader buffering.
public Ready ( ) : bool
리턴 bool
        public virtual bool Ready()
        {
            return false;
        }