Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/brosner/django-mailer
/ types & classes
Types & classes
24 in github.com/brosner/django-mailer
⨍
Functions
45
◇
Types & classes
24
↓ 3 callers
Class
Message
mailer/models.py:60
↓ 1 callers
Class
DontSendEntryManager
mailer/models.py:86
↓ 1 callers
Class
MessageLogManager
mailer/models.py:122
↓ 1 callers
Class
MessageManager
mailer/models.py:15
↓ 1 callers
Class
NotMyLock
Raised when an attempt is made to unlock a file someone else locked. >>> try: ... raise NotMyLock ... except UnlockError: ... pas
mailer/lockfile.py:148
Class
AlreadyLocked
Some other thread/process is locking the file. >>> try: ... raise AlreadyLocked ... except LockError: ... pass
mailer/lockfile.py:107
Class
Command
mailer/management/commands/send_mail.py:11
Class
Command
mailer/management/commands/retry_deferred.py:5
Class
DontSendEntry
mailer/models.py:99
Class
DontSendEntryAdmin
mailer/admin.py:7
Class
Error
Base class for other exceptions. >>> try: ... raise Error ... except Exception: ... pass
mailer/lockfile.py:75
Class
LinkFileLock
Lock access to a file using atomic property of link(2).
mailer/lockfile.py:234
Class
LockBase
Base class for platform-specific lock classes.
mailer/lockfile.py:158
Class
LockError
Base class for error arising from attempts to acquire the lock. >>> try: ... raise LockError ... except Error: ... pass
mailer/lockfile.py:86
Class
LockFailed
Lock file creation failed for some other reason. >>> try: ... raise LockFailed ... except LockError: ... pass
mailer/lockfile.py:117
Class
LockTimeout
Raised when lock creation fails within a user-defined period of time. >>> try: ... raise LockTimeout ... except LockError: ... pa
mailer/lockfile.py:97
Class
MessageAdmin
mailer/admin.py:4
Class
MessageLog
mailer/models.py:144
Class
MessageLogAdmin
mailer/admin.py:10
Class
Meta
mailer/models.py:108
Class
MkdirFileLock
Lock file by creating a directory.
mailer/lockfile.py:291
Class
NotLocked
Raised when an attempt is made to unlock an unlocked file. >>> try: ... raise NotLocked ... except UnlockError: ... pass
mailer/lockfile.py:138
Class
SQLiteFileLock
Demonstration of using same SQL-based locking.
mailer/lockfile.py:365
Class
UnlockError
Base class for errors arising from attempts to release the lock. >>> try: ... raise UnlockError ... except Error: ... pass
mailer/lockfile.py:127