Clarify which resolve function perform forward or reverse resolution.

This commit is contained in:
chris_kohlhoff 2008-09-10 09:19:22 +00:00
parent 2d49028c32
commit cfbbe3e0a7

View File

@ -75,7 +75,7 @@ public:
return this->service.cancel(this->implementation);
}
/// Resolve a query to a list of entries.
/// Perform forward resolution of a query to a list of entries.
/**
* This function is used to resolve a query into a list of endpoint entries.
*
@ -99,7 +99,7 @@ public:
return i;
}
/// Resolve a query to a list of entries.
/// Perform forward resolution of a query to a list of entries.
/**
* This function is used to resolve a query into a list of endpoint entries.
*
@ -121,7 +121,7 @@ public:
return this->service.resolve(this->implementation, q, ec);
}
/// Asynchronously resolve a query to a list of entries.
/// Asynchronously perform forward resolution of a query to a list of entries.
/**
* This function is used to asynchronously resolve a query into a list of
* endpoint entries.
@ -153,7 +153,7 @@ public:
return this->service.async_resolve(this->implementation, q, handler);
}
/// Resolve an endpoint to a list of entries.
/// Perform reverse resolution of an endpoint to a list of entries.
/**
* This function is used to resolve an endpoint into a list of endpoint
* entries.
@ -179,7 +179,7 @@ public:
return i;
}
/// Resolve an endpoint to a list of entries.
/// Perform reverse resolution of an endpoint to a list of entries.
/**
* This function is used to resolve an endpoint into a list of endpoint
* entries.
@ -203,7 +203,8 @@ public:
return this->service.resolve(this->implementation, e, ec);
}
/// Asynchronously resolve an endpoint to a list of entries.
/// Asynchronously perform reverse resolution of an endpoint to a list of
/// entries.
/**
* This function is used to asynchronously resolve an endpoint into a list of
* endpoint entries.