summaryrefslogtreecommitdiff
path: root/kafka/protocol/message.py
Commit message (Expand)AuthorAgeFilesLines
* Be explicit with tuples for %s formattinguse-explicit-tuples-for-stringsJeff Widman2018-11-171-2/+2
* use absolute imports everywhere (#1362)Kevin Tindall2018-02-061-5/+5
* Added minor fixes for PR reviewTaras2017-10-121-1/+2
* Refactor MessageSet and Message into LegacyRecordBatch to later support v2 me...Taras2017-10-111-4/+8
* BrokerConnection receive bytes pipe (#1032)Dana Powers2017-08-151-3/+4
* Avoid re-encoding for message crc check (#1027)Dana Powers2017-03-131-6/+12
* Fixed couple of "leaks" when gc is disabled (#979)Max Baryshnikov2017-03-071-2/+2
* PEP-8: Spacing & removed unused imports (#899)Jeff Widman2017-02-091-4/+3
* Fix message timestamp_type (#828)Josh Yudaken2016-09-151-1/+4
* Always absolute_importabsolute_importDana Powers2016-08-021-0/+2
* Always encode size with MessageSet (#771)Dana Powers2016-07-171-3/+1
* Fix regression in MessageSet decoding wrt PartialMessages (#716)Dana Powers2016-06-011-3/+6
* Use standard LZ4 framing for v1 messages / kafka 0.10 (#695)Dana Powers2016-05-221-2/+6
* KAFKA-3025: Message v1 -- add timetamp and use relative offset in compressed ...Dana Powers2016-05-221-17/+61
* Always pass encoded message bytes to MessageSet.encode()Dana Powers2016-05-221-37/+17
* Add support for LZ4 compressed messages using python-lz4 moduleDana Powers2016-01-251-3/+12
* Support encode and repr on raw BytesIO MessageSets (used in new producer)Dana Powers2016-01-241-0/+12
* Add Message and MessageSet HEADER_SIZE bytesDana Powers2016-01-241-0/+2
* Message value can be NoneDana Powers2016-01-031-1/+1
* Override Message __hash__ to use _encode_self and not recalc crcsDana Powers2016-01-031-0/+3
* Assert Message value and (optional) key are bytesDana Powers2016-01-031-0/+2
* Support message decompressionDana Powers2015-12-311-2/+25
* Add Message.validate_crc() methodDana Powers2015-12-281-0/+7
* Support pickling of Structs -- _encode_self instance method needs some magicDana Powers2015-12-091-0/+1
* Return PartialMessage object in MessageSet.decode if message is truncated by ...Dana Powers2015-12-091-3/+10
* Fix BytesIO import in kafka.protocol.messageDana Powers2015-12-091-1/+3
* Handle special __init__ signature in Message decode()Dana Powers2015-12-091-0/+8
* Handle decoding partial messages in MessageSet - caused by FetchRequest max_b...Dana Powers2015-12-091-6/+24
* Add comment re bytes offset tracking in MessageSet decode()Dana Powers2015-12-041-1/+1
* Recursive repr, display all field names and values for StructsDana Powers2015-12-041-1/+5
* Use simply counting instead of buffer.tell() -- socket.makefile does not supp...Dana Powers2015-12-041-2/+4
* Rework protocol type definition: AbstractType, Schema, StructDana Powers2015-12-041-0/+67