Velocity


Source link: https://github.com/ravindu1024/velocity

Velocity

An easy to use networking library for Android

Features

  • Simplified networking
  • Supports GET/POST/PUT/DELETE (for now)
  • Supports file downloads and uploads (with progress callbacks)
  • Supports http post data (json, multipart, url-encoded, plain text, xml)
  • Simple OAuth logins using password resource flow
  • Queued requests
  • Global and per request mocking
  • Built in deserialization for JSON (using gson)
  • Handles redirects
  • Adjustable settings : read/request timeout, mock delay, global simulated delay, max redirects, user agent, multipart boundary
  1. Installation Add the following to your project's main gradle file:
allprojects {

  repositories {

...

maven {
 url 'https://jitpack.io' 
}

  
}
 
}

Add the following to your app.gradle file

 compile 'com.github.ravindu1024:velocity:1.0.4'

Usage

Velocity uses a background threadpool to execute network requests and it needs to initialized at app launch:

 Velocity.initialize(3);

  //initialize the threadpool with 3 background threads. All threads will be waiting on a queue.

Simple GET request:

Velocity.get("http://www.google.com").connect(new Velocity.ResponseListener()

{

 @Override

 public void onVelocitySuccess(Velocity.Response response)

 {

 
}

  @Override

 public void onVelocityFailed(Velocity.Response error)

 {

 
}

}
);

GET request with headers and path parameters:

Velocity.get(url)

  .withHeader("header1", "value1")

  .withHeader("header2", "value2")

  .withPathParam("path1", "value1")

  .withPathParam("path2", "value2")

  .connect(new Velocity.ResponseListener()

  {

@Override

public void onVelocitySuccess(Velocity.Response response)

{

}

 @Override

public void onVelocityFailed(Velocity.Response error)

{

}

  
}
);

POST with form data:

Velocity.post(url)

  .withFormData("key1", "value1")

  .withFormData("key2", "value2")

  .connect(new Velocity.ResponseListener()

  {

@Override

public void onVelocitySuccess(Velocity.Response response)

{

}

 @Override

public void onVelocityFailed(Velocity.Response error)

{

}

  
}
);

Queuing multiple requests: When multiple requests are queued and executed all replies are provided in a single callback. If one or more requests fail, the whole queued request is considered failed. The multi-response queue is threadsafe and is global to the application process.


  Velocity.get(url).queue(0);

Velocity.download(file).setDownloadFile(filepath).queue(1);

Velocity.get(randomImage).queue(2);

 Velocity.executeQueue(new Velocity.MultiResponseListener()

{

 @Override

 public void onVelocityMultiResponseSuccess(HashMap<Integer, Velocity.Response> responseMap)

 {

 
}

  @Override

 public void onVelocityMultiResponseError(HashMap<Integer, Velocity.Response> errorMap)

 {

 
}

}
);

Deserialization:

MyWrapperClass data = serverResponse.deserialize(MyWrapperClass.class);

Resources

AndroidLifecyle is a 'compatibility' version of the ActivityLifecycleCallbacks APIs that were introduced in Android 4 (API Level 14) and adding similar mechanism for Fragment.

This library was designed for creating database using ContentProvider and for reducing complexity of database tables creation.

MultiActionTextView allows to create Spannable TextView with and without under line.

PagerSlidingTabStrip is an interactive indicator to navigate between the different pages of a ViewPager. Inspired by astuetz/PagerSlidingTabStrip.

jraf-android-util is a collection of general purpose utilities for Android.

Why it exists

There is currently no way for an android application to catch and report ANR errors. If your application is not in the play store (either because you are still developing it or because you are distributing it differently), the only way to investigate an ANR is to pull the file /data/anr/traces.txt.

What it does

It sets up a watchdog timer that will detect when the UI thread stops responding. When it does, it raises an error with the main thread's stack trace.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes