Changed the artifact id from 'benchmark-features' to 'features-benchmark'
[controller.git] / benchmark / rpcbenchmark / src / main / java / rpcbenchmark / impl / RTCClient.java
diff --git a/benchmark/rpcbenchmark/src/main/java/rpcbenchmark/impl/RTCClient.java b/benchmark/rpcbenchmark/src/main/java/rpcbenchmark/impl/RTCClient.java
new file mode 100644 (file)
index 0000000..5565e03
--- /dev/null
@@ -0,0 +1,16 @@
+/*
+ * Copyright (c) 2015 Cisco Systems and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+
+package rpcbenchmark.impl;
+
+public interface RTCClient {
+    long getRpcOk();
+    long getRpcError();
+    void runTest(int iterations);
+    void close();
+}