コード例 #1
0
ファイル: AbstractStep.java プロジェクト: lassewesth/neo4j
 @SuppressWarnings("unchecked")
 protected <BATCH> void sendDownstream(long ticket, BATCH batch) {
   if (batch == null) {
     if (downstream != null) {
       throw new IllegalArgumentException("Expected a batch to send downstream");
     }
   } else {
     downstreamIdleTime.addAndGet(downstream.receive(ticket, batch));
   }
 }