MCPcopy Create free account

hub / github.com/brosner/django-mailer / types & classes

Types & classes24 in github.com/brosner/django-mailer

↓ 3 callersClassMessage
mailer/models.py:60
↓ 1 callersClassDontSendEntryManager
mailer/models.py:86
↓ 1 callersClassMessageLogManager
mailer/models.py:122
↓ 1 callersClassMessageManager
mailer/models.py:15
↓ 1 callersClassNotMyLock
Raised when an attempt is made to unlock a file someone else locked. >>> try: ... raise NotMyLock ... except UnlockError: ... pas
mailer/lockfile.py:148
ClassAlreadyLocked
Some other thread/process is locking the file. >>> try: ... raise AlreadyLocked ... except LockError: ... pass
mailer/lockfile.py:107
ClassCommand
mailer/management/commands/send_mail.py:11
ClassCommand
mailer/management/commands/retry_deferred.py:5
ClassDontSendEntry
mailer/models.py:99
ClassDontSendEntryAdmin
mailer/admin.py:7
ClassError
Base class for other exceptions. >>> try: ... raise Error ... except Exception: ... pass
mailer/lockfile.py:75
ClassLinkFileLock
Lock access to a file using atomic property of link(2).
mailer/lockfile.py:234
ClassLockBase
Base class for platform-specific lock classes.
mailer/lockfile.py:158
ClassLockError
Base class for error arising from attempts to acquire the lock. >>> try: ... raise LockError ... except Error: ... pass
mailer/lockfile.py:86
ClassLockFailed
Lock file creation failed for some other reason. >>> try: ... raise LockFailed ... except LockError: ... pass
mailer/lockfile.py:117
ClassLockTimeout
Raised when lock creation fails within a user-defined period of time. >>> try: ... raise LockTimeout ... except LockError: ... pa
mailer/lockfile.py:97
ClassMessageAdmin
mailer/admin.py:4
ClassMessageLog
mailer/models.py:144
ClassMessageLogAdmin
mailer/admin.py:10
ClassMeta
mailer/models.py:108
ClassMkdirFileLock
Lock file by creating a directory.
mailer/lockfile.py:291
ClassNotLocked
Raised when an attempt is made to unlock an unlocked file. >>> try: ... raise NotLocked ... except UnlockError: ... pass
mailer/lockfile.py:138
ClassSQLiteFileLock
Demonstration of using same SQL-based locking.
mailer/lockfile.py:365
ClassUnlockError
Base class for errors arising from attempts to release the lock. >>> try: ... raise UnlockError ... except Error: ... pass
mailer/lockfile.py:127