Returns the listener to be used by the connectivity library to notify the registered listener about a successful or failed request operation.
class example implements INetListener{ .... public void makeGetRequest(...) throws Exception { .... BaseRequest getrequest = new BaseRequest(); getrequest.getListener(); } ... }
Method will return null if there is no registered listener.