summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ei-library/src/org/tizen/eilib/connection/Emulator.java33
1 files changed, 0 insertions, 33 deletions
diff --git a/ei-library/src/org/tizen/eilib/connection/Emulator.java b/ei-library/src/org/tizen/eilib/connection/Emulator.java
index 5d0b607..d72068d 100644
--- a/ei-library/src/org/tizen/eilib/connection/Emulator.java
+++ b/ei-library/src/org/tizen/eilib/connection/Emulator.java
@@ -31,7 +31,6 @@ import java.io.IOException;
import org.tizen.sdblib.DeviceState;
import org.tizen.sdblib.IDevice;
import org.tizen.sdblib.IShellOutputReceiver;
-import org.tizen.sdblib.LogReceiver;
import org.tizen.sdblib.exception.SdbCommandRejectedException;
import org.tizen.sdblib.exception.ShellCommandUnresponsiveException;
import org.tizen.sdblib.exception.TimeoutException;
@@ -285,38 +284,6 @@ public class Emulator {
}
/**
- * Runs the event log service and outputs the event log to the {@link LogReceiver}.
- * <p/>This call is blocking until {@link LogReceiver#isCancelled()} returns true.
- * @param receiver the receiver to receive the event log entries.
- * @throws TimeoutException in case of timeout on the connection. This can only be thrown if the
- * timeout happens during setup. Once logs start being received, no timeout will occur as it's
- * not possible to detect a difference between no log and timeout.
- * @throws SdbCommandRejectedException if sdb rejects the command
- * @throws IOException in case of I/O error on the connection.
- */
- public void runEventLogService(LogReceiver receiver)
- throws TimeoutException, SdbCommandRejectedException, IOException {
- device.runEventLogService(receiver);
- }
-
- /**
- * Runs the log service for the given log and outputs the log to the {@link LogReceiver}.
- * <p/>This call is blocking until {@link LogReceiver#isCancelled()} returns true.
- *
- * @param logname the logname of the log to read from.
- * @param receiver the receiver to receive the event log entries.
- * @throws TimeoutException in case of timeout on the connection. This can only be thrown if the
- * timeout happens during setup. Once logs start being received, no timeout will
- * occur as it's not possible to detect a difference between no log and timeout.
- * @throws SdbCommandRejectedException if sdb rejects the command
- * @throws IOException in case of I/O error on the connection.
- */
- public void runLogService(String logname, LogReceiver receiver)
- throws TimeoutException, SdbCommandRejectedException, IOException {
- device.runLogService(logname, receiver);
- }
-
- /**
* Creates a port forwarding between a local and a remote port.
*
* @param localPort the local port to forward