struct Clickhoused::Packets::Progress
Defined in:
clickhoused/packets/progress.crConstructors
Class Method Summary
Instance Method Summary
- #bytes : UInt64
- #bytes=(bytes : UInt64)
- #elapsed : Time::Span | Nil
- #elapsed=(elapsed : Time::Span | Nil)
- #encode(buffer : Buffer)
- #rows : UInt64
- #rows=(rows : UInt64)
- #total_rows : UInt64
- #total_rows=(total_rows : UInt64)
- #with_client : Bool
- #with_client=(with_client : Bool)
- #wrote_bytes : UInt64 | Nil
- #wrote_bytes=(wrote_bytes : UInt64 | Nil)
- #wrote_rows : UInt64 | Nil
- #wrote_rows=(wrote_rows : UInt64 | Nil)
Instance methods inherited from struct Clickhoused::Packet
initialize
initialize
Constructor methods inherited from struct Clickhoused::Packet
new
new
Constructor Detail
def self.new(rows : UInt64, bytes : UInt64, total_rows : UInt64, wrote_rows : UInt64 | Nil = nil, wrote_bytes : UInt64 | Nil = nil, with_client : Bool = false, elapsed : Time::Span | Nil = nil)
#