جهاز استقبال ILogcat

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 ()

الحصول على بيانات

public InputStreamSource getLogcatData (int maxBytes, 
                int offset)

لعرض المخزن المؤقت الحالي لـ Logcat استنادًا إلى إزاحة.

المعلمات
maxBytes int: الحد الأقصى لحجم المخزن المؤقت الذي تم إرجاعه

offset int: إزاحة المخزن المؤقت الكامل

المرتجعات
InputStreamSource المخزن المؤقت لـ Logcat بدءًا من الإزاحة.

الحصول على بيانات

public abstract InputStreamSource getLogcatData (int maxBytes)

المعلمات
maxBytes int

المرتجعات
InputStreamSource

الحصول على بيانات

public abstract InputStreamSource getLogcatData ()

المرتجعات
InputStreamSource

بدء

public abstract void start ()

محطة توقّف

public abstract void stop ()