1 /* 2 * Copyright (C) 2025 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 package com.android.tradefed.result.resultdb; 17 18 import com.android.resultdb.proto.Invocation; 19 import com.android.resultdb.proto.TestResult; 20 import com.android.resultdb.proto.UpdateInvocationRequest; 21 22 /** 23 * Interface for communicating with ResultDB recorder backend. The interface contains methods to 24 * create and update invocations and upload test results. 25 */ 26 public interface IRecorderClient { 27 updateInvocation(UpdateInvocationRequest request)28 public Invocation updateInvocation(UpdateInvocationRequest request); 29 finalizeInvocation()30 public Invocation finalizeInvocation(); 31 uploadTestResult(TestResult result)32 public void uploadTestResult(TestResult result); 33 finalizeTestResults()34 public void finalizeTestResults(); 35 } 36