redis-allocator 0.0.1__py3-none-any.whl → 0.3.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,7 +8,7 @@ distributed environment.
8
8
  from redis_allocator.lock import (RedisLock, RedisLockPool, LockStatus,
9
9
  BaseLock, BaseLockPool, ThreadLock, ThreadLockPool)
10
10
  from redis_allocator.task_queue import TaskExecutePolicy, RedisTask, RedisTaskQueue
11
- from redis_allocator.allocator import RedisAllocator
11
+ from redis_allocator.allocator import RedisAllocator, RedisAllocatorObject, RedisAllocatorUpdater, RedisAllocatorPolicy, DefaultRedisAllocatorPolicy
12
12
 
13
13
 
14
14
  __version__ = '0.0.1'
@@ -25,4 +25,8 @@ __all__ = [
25
25
  'RedisTask',
26
26
  'RedisTaskQueue',
27
27
  'RedisAllocator',
28
+ 'RedisAllocatorObject',
29
+ 'RedisAllocatorUpdater',
30
+ 'RedisAllocatorPolicy',
31
+ 'DefaultRedisAllocatorPolicy',
28
32
  ]
@@ -0,0 +1 @@
1
+ __version__ = '0.3.1'