Ich lerne, wie man die CCR (Concurrency and Coordination Runtime) in Verbindung mit einem asynchronen WCF Web Service verwendet.
Dies ist der Test-WCF-Dienst:
public class Service : IService
{
private Accounts.Manager accountManager = new Accounts.Manager();
public IAsyncResult BeginGetAccount(int id, AsyncCallback callback, object state)
{
//How Do I Call the CCR Function without blocking a Thread?
throw new NotImplementedException();
}
public string EndGetAccount(IAsyncResult result)
{
//How Do I Finish the Call and Pass back the Result?
throw new NotImplementedException();
}
}
Er nimmt eine ID-Nummer und gibt den dazugehörigen Kontonamen zurück (falls vorhanden).
Ich habe eine CCR-Funktion geschrieben, die das/die passende(n) Konto/Konten finden soll (natürlich ist noch viel Arbeit nötig - dies ist nur ein Proof of Concept) An dieser Stelle komme ich nicht weiter.
Wie gebe ich die Ergebnisse zurück (Global port?) UND was noch wichtiger ist: Wie kann ich den CCR in den WCF Asynchronous Service Call einbinden, ohne einen Thread zu blockieren?
public IEnumerator<ITask> GetAccount(int id)
{
SqlDataReader reader = null;
SqlConnection connection = new SqlConnection(@"Data Source=.\SQLEXPRESS;Initial Catalog=BizData;Integrated Security=True;Async=True;");
string query = "SELECT * FROM Account WHERE AccountID = @AccountID";
SqlCommand command = new SqlCommand(query, connection);
SqlParameter accountID = new SqlParameter("AccountID", id);
command.Parameters.Add(accountID);
connection.Open();
yield return Arbiter.Choice(SQLAdapter.GetReader(command),
delegate(SqlDataReader r) { reader = r; },
delegate(Exception e) { Console.Write("Failed to get SQL data"); });
if (reader == null) yield break;
while (reader.Read())
{
Account account = new Account { ID = Convert.ToInt32(reader["AccountID"]),
Name = reader["Account"].ToString(),
ParkingNo = Convert.ToInt32(reader["ParkingNo"]),
Password = reader["Password"].ToString() };
//Post account?
}
connection.Close();
}