ILogcatReceiver

public interface ILogcatReceiver

com.android.tradefed.device.ILogcatReceiver


기기의 logcat 출력을 InputStreamSource로 제공하는 클래스입니다.

요약

공개 메서드

abstract void clear()
default InputStreamSource getLogcatData(int maxBytes, int offset)

오프셋이 지정된 현재 logcat 버퍼를 반환합니다.

abstract InputStreamSource getLogcatData(int maxBytes)
abstract InputStreamSource getLogcatData()
abstract void start()
abstract void stop()

공개 메서드

지우기

public abstract void clear ()

getLogcatData

public InputStreamSource getLogcatData (int maxBytes, 
                int offset)

오프셋이 지정된 현재 logcat 버퍼를 반환합니다.

매개변수
maxBytes int: 반환된 버퍼의 최대 크기

offset int: 전체 버퍼의 오프셋입니다.

반환 값
InputStreamSource 오프셋에서 시작되는 logcat 버퍼입니다.

getLogcatData

public abstract InputStreamSource getLogcatData (int maxBytes)

매개변수
maxBytes int

반환 값
InputStreamSource

getLogcatData

public abstract InputStreamSource getLogcatData ()

반환 값
InputStreamSource

start

public abstract void start ()

경유

public abstract void stop ()