Pergunta

Dentro do manipulador assíncrono, estou criando um IOBServable a partir do WebRequest, que retorna uma string de redirecionamento.

Estou assinando esse observável e chamando asyncresult.compleTecall (), mas sou forçado a usar o Thread.sleep (100) para executá -lo. E não funciona sempre. Tenho certeza de que isso não está correto. Você poderia, por favor, brilhar um pouco de luz. Obrigada!

    public IAsyncResult BeginProcessRequest(HttpContext context, AsyncCallback cb, object state)
    {
        _context = context;
        _ar = new AsyncResult(cb, state);

        _tweet = context.Request["tweet"];
        string url = context.Request["url"];

        if(String.IsNullOrEmpty(_tweet) || String.IsNullOrEmpty(url))
        {
            DisplayError("<h2>Tweet or url cannot be empty</h2>");
            return _ar;
        }

        _oAuth = new oAuthTwitterRx();
        using (_oAuth.AuthorizationLinkGet().Subscribe(p =>
        {
            _context.Response.Redirect(p);
            _ar.CompleteCall();
        },
                exception => DisplayError("<h2>Unable to connect to twitter, please try again</h2>")
                ))


        return _ar;
    }

public class AsyncResult : IAsyncResult
{
    private AsyncCallback _cb;
    private object _state;
    private ManualResetEvent _event;
    private bool _completed = false;
    private object _lock = new object();

    public AsyncResult(AsyncCallback cb, object state)
    {
        _cb = cb;
        _state = state;
    }

    public Object AsyncState
    {
        get { return _state; }
    }

    public bool CompletedSynchronously
    {
        get { return false; }
    }

    public bool IsCompleted
    {
        get { return _completed; }
    }

    public WaitHandle AsyncWaitHandle
    {
        get
        {
            lock (_lock)
            {
                if (_event == null)
                    _event = new ManualResetEvent(IsCompleted);
                return _event;
            }
        }
    }

    public void CompleteCall()
    {
        lock (_lock)
        {
            _completed = true;
            if (_event != null)
                _event.Set();
        }

        if (_cb != null)
            _cb(this);
    }
}
Foi útil?

Solução

Melhor tarde do que nunca; Eu acho que o artigo a seguir explica exatamente o que você tenta alcançar: http://blogs.msdn.com/b/jeffva/archive/2010/09/15/rx-on-the-sherver-part-5-of-n-observable-asp-net.aspx

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top