加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Java > 正文

使用async / await将现有C#同步方法转换为异步?

发布时间:2020-12-15 04:41:13 所属栏目:Java 来源:网络整理
导读:从同步I / O绑定方法开始(如下所示),如何使用async / await使其异步? public int Iobound(SqlConnection conn,SqlTransaction tran){ // this stored procedure takes a few seconds to complete SqlCommand cmd = new SqlCommand("MyIoboundStoredProc",co
从同步I / O绑定方法开始(如下所示),如何使用async / await使其异步?

public int Iobound(SqlConnection conn,SqlTransaction tran)
{
    // this stored procedure takes a few seconds to complete
    SqlCommand cmd = new SqlCommand("MyIoboundStoredProc",conn,tran);
    cmd.CommandType = CommandType.StoredProcedure;

    SqlParameter returnValue = cmd.Parameters.Add("ReturnValue",SqlDbType.Int);
    returnValue.Direction = ParameterDirection.ReturnValue;
    cmd.ExecuteNonQuery();

    return (int)returnValue.Value;
}

MSDN示例都假设存在* Async方法,并且没有为I / O绑定操作自己创建一个指导.

我可以使用Task.Run()并在该新任务中执行Iobound(),但不鼓励创建新任务,因为该操作不受CPU限制.

我想使用async / await,但我仍然坚持这个如何继续转换此方法的基本问题.

解决方法

转换此特定方法非常简单:

// change return type to Task<int>
public async Task<int> Iobound(SqlConnection conn,SqlTransaction tran) 
{
    // this stored procedure takes a few seconds to complete
    using (SqlCommand cmd = new SqlCommand("MyIoboundStoredProc",tran)) 
    {
        cmd.CommandType = CommandType.StoredProcedure;
        SqlParameter returnValue = cmd.Parameters.Add("ReturnValue",SqlDbType.Int);
        returnValue.Direction = ParameterDirection.ReturnValue;
        // use async IO method and await it
        await cmd.ExecuteNonQueryAsync();
        return (int) returnValue.Value;
    }
}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读