pub struct A2AClient { /* private fields */ }Expand description
A2A HTTP Client for agent-to-agent communication
Implementations§
Source§impl A2AClient
impl A2AClient
Sourcepub fn set_auth_token(&mut self, token: impl Into<String>)
pub fn set_auth_token(&mut self, token: impl Into<String>)
Set authentication token
Sourcepub async fn discover(&self, url: &str) -> Result<AgentCard, AppError>
pub async fn discover(&self, url: &str) -> Result<AgentCard, AppError>
Discover an agent at the given URL
Sourcepub async fn create_task(
&self,
url: &str,
message: &str,
) -> Result<A2ATask, AppError>
pub async fn create_task( &self, url: &str, message: &str, ) -> Result<A2ATask, AppError>
Create a task on a remote agent
Sourcepub async fn create_task_with_request(
&self,
url: &str,
task: CreateTaskRequest,
) -> Result<A2ATask, AppError>
pub async fn create_task_with_request( &self, url: &str, task: CreateTaskRequest, ) -> Result<A2ATask, AppError>
Create a task with a structured remote contract.
Sourcepub async fn retry_task(
&self,
url: &str,
task_id: &str,
) -> Result<A2ATask, AppError>
pub async fn retry_task( &self, url: &str, task_id: &str, ) -> Result<A2ATask, AppError>
Retry an existing remote task.
Sourcepub async fn heartbeat_task(
&self,
url: &str,
heartbeat: TaskHeartbeatRequest,
) -> Result<A2ATask, AppError>
pub async fn heartbeat_task( &self, url: &str, heartbeat: TaskHeartbeatRequest, ) -> Result<A2ATask, AppError>
Send a heartbeat/update for a leased remote task.
Sourcepub async fn list_task_artifacts(
&self,
url: &str,
task_id: &str,
) -> Result<Vec<ArtifactManifestEntry>, AppError>
pub async fn list_task_artifacts( &self, url: &str, task_id: &str, ) -> Result<Vec<ArtifactManifestEntry>, AppError>
List artifact manifests for a task.
Sourcepub async fn fetch_task_artifact(
&self,
url: &str,
task_id: &str,
artifact_name: &str,
) -> Result<Artifact, AppError>
pub async fn fetch_task_artifact( &self, url: &str, task_id: &str, artifact_name: &str, ) -> Result<Artifact, AppError>
Fetch a specific artifact payload for a task.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for A2AClient
impl !RefUnwindSafe for A2AClient
impl Send for A2AClient
impl Sync for A2AClient
impl Unpin for A2AClient
impl !UnwindSafe for A2AClient
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request§impl<L> LayerExt<L> for L
impl<L> LayerExt<L> for L
§fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
Applies the layer to a service and wraps it in [
Layered].