FileDocCategorySizeDatePackage
ImmediateResponseDelivery.javaAPI DocAndroid 5.1 API574Thu Mar 12 22:22:56 GMT 2015com.android.volley.utils

ImmediateResponseDelivery

public class ImmediateResponseDelivery extends com.android.volley.ExecutorDelivery
A ResponseDelivery for testing that immediately delivers responses instead of posting back to the main thread.

Fields Summary
Constructors Summary
public ImmediateResponseDelivery()

        super(new Executor() {
            @Override
            public void execute(Runnable command) {
                command.run();
            }
        });
    
Methods Summary