コード例 #1
0
ファイル: TransactionSampler.cs プロジェクト: RalphC/NetMeter
 /**
  * One cannot sample the TransactionSampler directly.
  */
 public ExecuteResult Execute(Entry e)
 {
     throw new Exception("Cannot sample TransactionSampler directly");
     // It is the JMeterThread which knows how to sample a real sampler
 }
コード例 #2
0
ファイル: TestAgentBase.cs プロジェクト: RalphC/NetMeter
 /**
  * Do a sampling and return its results.
  *
  * @param e
  *            <code>Entry</code> to be sampled
  * @return results of the sampling
  */
 public ExecuteResult Execute(Entry e)
 {
     return Execute();
 }