-
Notifications
You must be signed in to change notification settings - Fork 10
Clients
Ignacio Corderi edited this page May 6, 2014
·
4 revisions
The Kinetic python library has multiple client definitions for talking with the drive.
We have a basic Blocking Client and several asynchronous clients that use different strategies.
The Threaded Client is based on threads and locks, while the Async Client is based on green threads and green pools. Both of this clients offer asynchronous capabilities using continuations, essentially, the async methods receive two extra function parameters with who to call when an operation completes or fails.
The Admin Client will help with administrative tasks such as erasing the entire drive, changing permission, etc.
Got back to Clients