类 NetworkDispatcher

java.lang.Object
java.lang.Thread
com.android.volley.NetworkDispatcher
所有已实现的接口:
Runnable

public class NetworkDispatcher extends Thread
Provides a thread for performing network dispatch from a queue of requests. Requests added to the specified queue are processed from the network via a specified Network interface. Responses are committed to cache, if eligible, using a specified Cache interface. Valid responses and errors are posted back to the caller via a ResponseDelivery.
  • 构造器详细资料

    • NetworkDispatcher

      public NetworkDispatcher(BlockingQueue<Request<?>> queue, Network network, Cache cache, ResponseDelivery delivery)
      Creates a new network dispatcher thread. You must call Thread.start() in order to begin processing.
      参数:
      queue - Queue of incoming requests for triage
      network - Network interface to use for performing requests
      cache - Cache interface to use for writing responses to cache
      delivery - Delivery interface to use for posting responses
  • 方法详细资料

    • quit

      public void quit()
      Forces this dispatcher to quit immediately. If any requests are still in the queue, they are not guaranteed to be processed.
    • run

      public void run()
      指定者:
      run 在接口中 Runnable
      覆盖:
      run 在类中 Thread