예제 #1
0
//JAVA TO C# CONVERTER WARNING: 'final' parameters are ignored unless the option to convert to C# 7.2 'in' parameters is selected:
//ORIGINAL LINE: private org.neo4j.test.OtherThreadExecutor.WorkerCommand<Void,Void> receive(final int processors, final ProcessorStep<Void> step)
        private WorkerCommand <Void, Void> Receive(int processors, ProcessorStep <Void> step)
        {
            return(state =>
            {
                step.Receive(processors, null);
                return null;
            });
        }
예제 #2
0
 public Sender(ProcessorStep <T> outerInstance)
 {
     this._outerInstance = outerInstance;
 }