Beispiel #1
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
//ORIGINAL LINE: public boolean onFileContent(org.neo4j.causalclustering.catchup.storecopy.FileChunk fileChunk) throws java.io.IOException
        public override bool OnFileContent(FileChunk fileChunk)
        {
            if (!_requestOutcomeSignal.Cancelled)
            {
                RecordLastResponse();
                return(@delegate.onFileContent(_requestOutcomeSignal, fileChunk));
            }
            // true means stop
            return(true);
        }
Beispiel #2
0
 public override bool OnFileContent(CompletableFuture <T> signal, FileChunk response)
 {
     UnimplementedMethod(signal, response);
     return(false);
 }