com.android.emulator.control.LogMessageOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adam Show documentation
Show all versions of adam Show documentation
Android Debug Bridge helper
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: emulator_controller.proto
// Protobuf Java Version: 3.25.0
package com.android.emulator.control;
public interface LogMessageOrBuilder extends
// @@protoc_insertion_point(interface_extends:android.emulation.control.LogMessage)
com.google.protobuf.MessageLiteOrBuilder {
/**
*
* [Output Only] The contents of the log output.
*
*
* string contents = 1;
* @return The contents.
*/
java.lang.String getContents();
/**
*
* [Output Only] The contents of the log output.
*
*
* string contents = 1;
* @return The bytes for contents.
*/
com.google.protobuf.ByteString
getContentsBytes();
/**
*
* The starting byte position of the output that was returned. This
* should match the start parameter sent with the request. If the serial
* console output exceeds the size of the buffer, older output will be
* overwritten by newer content and the start values will be mismatched.
*
*
* int64 start = 2;
* @return The start.
*/
long getStart();
/**
*
*[Output Only] The position of the next byte of content from the serial
* console output. Use this value in the next request as the start
* parameter.
*
*
* int64 next = 3;
* @return The next.
*/
long getNext();
/**
*
* Set the sort of response you are interested it in.
* It the type is "Parsed" the entries field will contain the parsed
* results. otherwise the contents field will be set.
*
*
* .android.emulation.control.LogMessage.LogType sort = 4;
* @return The enum numeric value on the wire for sort.
*/
int getSortValue();
/**
*
* Set the sort of response you are interested it in.
* It the type is "Parsed" the entries field will contain the parsed
* results. otherwise the contents field will be set.
*
*
* .android.emulation.control.LogMessage.LogType sort = 4;
* @return The sort.
*/
com.android.emulator.control.LogMessage.LogType getSort();
/**
*
* [Output Only] The parsed logcat entries so far. Only set if sort is
* set to Parsed
*
*
* repeated .android.emulation.control.LogcatEntry entries = 5;
*/
java.util.List
getEntriesList();
/**
*
* [Output Only] The parsed logcat entries so far. Only set if sort is
* set to Parsed
*
*
* repeated .android.emulation.control.LogcatEntry entries = 5;
*/
com.android.emulator.control.LogcatEntry getEntries(int index);
/**
*
* [Output Only] The parsed logcat entries so far. Only set if sort is
* set to Parsed
*
*
* repeated .android.emulation.control.LogcatEntry entries = 5;
*/
int getEntriesCount();
}