किसी भी विधि को असंगत रूप से c # में कैसे कॉल करें


110

क्या कोई मुझे कोड का एक छोटा स्निपेट दिखा सकता है जो यह दर्शाता है कि किसी विधि को असंगत रूप से c # में कैसे कॉल किया जाए?

जवाबों:


131

यदि आप कार्रवाई का उपयोग करते हैं। BeginInvoke (), तो आपको कहीं और EndInvoke कॉल करना होगा - अन्यथा फ्रेमवर्क को हीप पर async कॉल का परिणाम पकड़ना होगा, जिसके परिणामस्वरूप मेमोरी लीक हो सकती है।

यदि आप एसिंक्स / प्रतीक्षारत कीवर्ड के साथ C # 5 पर कूदना नहीं चाहते हैं, तो आप बस .net 4. में टास्क समानताएं पुस्तकालय का उपयोग कर सकते हैं। यह BeginInvoke / EndInvoke का उपयोग करने की तुलना में बहुत अच्छा है, और आग को साफ करने का एक अच्छा तरीका देता है। और async नौकरियों के लिए भूल जाओ:

using System.Threading.Tasks;
...
void Foo(){}
...
new Task(Foo).Start();

यदि आपके पास कॉल करने के तरीके हैं जो पैरामीटर लेते हैं, तो आप प्रतिनिधियों को बनाने के बिना कॉल को आसान बनाने के लिए एक लैम्ब्डा का उपयोग कर सकते हैं:

void Foo2(int x, string y)
{
    return;
}
...
new Task(() => { Foo2(42, "life, the universe, and everything");}).Start();

मुझे पूरा यकीन है (लेकिन यह सकारात्मक रूप से सकारात्मक नहीं है) कि टास्क लाइब्रेरी के चारों ओर C # 5 एसिंक्स / वेट सिंटैक्स सिर्फ सिंथैटिक शुगर है।


2
यदि यह पहले से ही स्पष्ट नहीं था, तो अंतिम पुन: जमाव: async / प्रतीक्षा सही है, लेकिन यह नाटकीय रूप से आपके कोड को देखने के तरीके को बदल देगा।
गुस्सोर

मैं एक विधि के साथ यह कोशिश कर रहा हूं जो एक घटना बनाता है और फिर प्रतिनिधियों को सौंपता है, क्या यह सही है? यदि हां, तो मैं कार्य को कैसे समाप्त कर सकता हूं। चीयर्स
जोस्टर

52

.Net 4.5 के साथ शुरू करके आप टास्क का उपयोग कर सकते हैं। बस एक एक्शन शुरू करने के लिए:

void Foo(string args){}
...
Task.Run(() => Foo("bar"));

Task.Run vs Task.Factory.StartNew


24

यहाँ यह करने का एक तरीका है:

// The method to call
void Foo()
{
}


Action action = Foo;
action.BeginInvoke(ar => action.EndInvoke(ar), null);

निश्चित रूप से आपको Actionएक अन्य प्रकार के प्रतिनिधि द्वारा प्रतिस्थापित करने की आवश्यकता है यदि विधि में एक अलग हस्ताक्षर है


1
जब हम फू को बुलाते हैं तो मैं तर्क कैसे पास कर सकता हूं जो आपने नहीं दिखाया?
थॉमस

नल के स्थान पर आप एक वस्तु डाल सकते हैं। Foo टाइप ऑब्जेक्ट का एक इनपुट पैरामीटर लें। फिर आपको ऑब्जेक्ट को फू में उपयुक्त प्रकार में डालना होगा।
डेनिस स्किडमोर

4

Async और Await के साथ MSDN लेख अतुल्यकालिक प्रोग्रामिंग की जाँच करेंयदि आप नए सामान के साथ खेलने का जोखिम उठा सकते हैं तो । इसे .NET 4.5 में जोड़ा गया था।

लिंक से उदाहरण कोड स्निपेट (जो स्वयं इस MSDN नमूना कोड परियोजना से है ):

// Three things to note in the signature: 
//  - The method has an async modifier.  
//  - The return type is Task or Task<T>. (See "Return Types" section.)
//    Here, it is Task<int> because the return statement returns an integer. 
//  - The method name ends in "Async."
async Task<int> AccessTheWebAsync()
{ 
    // You need to add a reference to System.Net.Http to declare client.
    HttpClient client = new HttpClient();

    // GetStringAsync returns a Task<string>. That means that when you await the 
    // task you'll get a string (urlContents).
    Task<string> getStringTask = client.GetStringAsync("http://msdn.microsoft.com");

    // You can do work here that doesn't rely on the string from GetStringAsync.
    DoIndependentWork();

    // The await operator suspends AccessTheWebAsync. 
    //  - AccessTheWebAsync can't continue until getStringTask is complete. 
    //  - Meanwhile, control returns to the caller of AccessTheWebAsync. 
    //  - Control resumes here when getStringTask is complete.  
    //  - The await operator then retrieves the string result from getStringTask. 
    string urlContents = await getStringTask;

    // The return statement specifies an integer result. 
    // Any methods that are awaiting AccessTheWebAsync retrieve the length value. 
    return urlContents.Length;
}

का हवाला देते हुए:

यदि आपके AccessTheWebAsyncपास कोई काम नहीं है जो GetStringAsync को कॉल करने और उसके पूरा होने की प्रतीक्षा के बीच कर सकता है, तो आप निम्न एकल स्टेटमेंट में कॉल करके और प्रतीक्षा करके अपने कोड को सरल बना सकते हैं।

string urlContents = await client.GetStringAsync();

अधिक विवरण लिंक में हैं


मैं इस तकनीक का उपयोग कैसे करूंगा और टाइमआउट सेट करूंगा?
सु लेल्विन

1
public partial class MainForm : Form
{
    Image img;
    private void button1_Click(object sender, EventArgs e)
    {
        LoadImageAsynchronously("http://media1.santabanta.com/full5/Indian%20%20Celebrities(F)/Jacqueline%20Fernandez/jacqueline-fernandez-18a.jpg");
    }

    private void LoadImageAsynchronously(string url)
    {
        /*
        This is a classic example of how make a synchronous code snippet work asynchronously.
        A class implements a method synchronously like the WebClient's DownloadData(…) function for example
            (1) First wrap the method call in an Anonymous delegate.
            (2) Use BeginInvoke(…) and send the wrapped anonymous delegate object as the last parameter along with a callback function name as the first parameter.
            (3) In the callback method retrieve the ar's AsyncState as a Type (typecast) of the anonymous delegate. Along with this object comes EndInvoke(…) as free Gift
            (4) Use EndInvoke(…) to retrieve the synchronous call’s return value in our case it will be the WebClient's DownloadData(…)’s return value.
        */
        try
        {
            Func<Image> load_image_Async = delegate()
            {
                WebClient wc = new WebClient();
                Bitmap bmpLocal = new Bitmap(new MemoryStream(wc.DownloadData(url)));
                wc.Dispose();
                return bmpLocal;
            };

            Action<IAsyncResult> load_Image_call_back = delegate(IAsyncResult ar)
            {
                Func<Image> ss = (Func<Image>)ar.AsyncState;
                Bitmap myBmp = (Bitmap)ss.EndInvoke(ar);

                if (img != null) img.Dispose();
                if (myBmp != null)
                    img = myBmp;
                Invalidate();
                //timer.Enabled = true;
            };
            //load_image_Async.BeginInvoke(callback_load_Image, load_image_Async);             
            load_image_Async.BeginInvoke(new AsyncCallback(load_Image_call_back), load_image_Async);             
        }
        catch (Exception ex)
        {

        }
    }
    protected override void OnPaint(PaintEventArgs e)
    {
        if (img != null)
        {
            Graphics grfx = e.Graphics;
            grfx.DrawImage(img,new Point(0,0));
        }
    }
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.