Example #1
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
//ORIGINAL LINE: public org.neo4j.register.Register_DoubleLongRegister answer(org.mockito.invocation.InvocationOnMock invocationOnMock) throws Throwable
            public override Org.Neo4j.Register.Register_DoubleLongRegister answer(InvocationOnMock invocationOnMock)
            {
                Org.Neo4j.Register.Register_DoubleLongRegister r = invocationOnMock.getArgument(1);
                r.Write(_updates[i], 0);
                i = (i + 1) % _updates.Length;
                return(r);
            }
Example #2
0
 //JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
 //ORIGINAL LINE: public Void answer(org.mockito.invocation.InvocationOnMock invocation) throws Throwable
 public override Void Answer( InvocationOnMock invocation )
 {
     // releasing reader after local lock released
         ResourceLatch.Signal();
         // waiting here for reader to finish read lock acquisition.
         // by this we check that local exclusive lock where released before releasing it on
         // master otherwise reader will be blocked forever
         ResourceReleaseLatch.await();
         return null;
 }
Example #3
0
            public override NodeRecord Answer(InvocationOnMock invocation)
            {
                if ((( Number )invocation.getArgument(0)).longValue() == 0L && invocation.getArgument(1) == null && invocation.getArgument(2) == null)
                {
                    return(null);
                }

                NodeRecord record = invocation.getArgument(1);

                record.Id       = (( Number )invocation.getArgument(0)).longValue();
                record.InUse    = true;
                record.Dense    = Dense;
                record.NextRel  = NextRel;
                record.NextProp = NextProp;
                return(record);
            }
Example #4
0
 public override object Answer( InvocationOnMock invocation )
 {
     return LockResult;
 }
Example #5
0
 public override bool?Answer(InvocationOnMock invocationOnMock)
 {
     Invocations++;
     return(Invocations <= ExpectedTransactionsToRecover);
 }