1 package android.app.ondeviceintelligence; 2 3 import android.os.PersistableBundle; 4 5 /** 6 * Signal to provide to the remote implementation in context of a given request or 7 * feature specific event. 8 * 9 * @hide 10 */ 11 12 oneway interface IProcessingSignal { 13 void sendSignal(in PersistableBundle actionParams) = 2; 14 } 15