Class: Net::IMAP::ThreadMember
- Inherits:
-
Struct
- Object
- Struct
- Net::IMAP::ThreadMember
- Defined in:
- lib/net/imap/response_data.rb
Overview
Net::IMAP::ThreadMember represents a thread-node returned by Net::IMAP#thread.
Instance Attribute Summary collapse
-
#children ⇒ Object
Returns the value of attribute children.
-
#seqno ⇒ Object
Returns the value of attribute seqno.
Instance Method Summary collapse
-
#to_sequence_set ⇒ Object
Returns a SequenceSet containing #seqno and all #children’s seqno, recursively.
Instance Attribute Details
#children ⇒ Object
Returns the value of attribute children
764 765 766 |
# File 'lib/net/imap/response_data.rb', line 764 def children @children end |
#seqno ⇒ Object
Returns the value of attribute seqno
764 765 766 |
# File 'lib/net/imap/response_data.rb', line 764 def seqno @seqno end |
Instance Method Details
#to_sequence_set ⇒ Object
Returns a SequenceSet containing #seqno and all #children’s seqno, recursively.
780 781 782 |
# File 'lib/net/imap/response_data.rb', line 780 def to_sequence_set SequenceSet.new all_seqnos end |