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
737 738 739 |
# File 'lib/net/imap/response_data.rb', line 737 def children @children end |
#seqno ⇒ Object
Returns the value of attribute seqno
737 738 739 |
# File 'lib/net/imap/response_data.rb', line 737 def seqno @seqno end |
Instance Method Details
#to_sequence_set ⇒ Object
Returns a SequenceSet containing #seqno and all #children’s seqno, recursively.
753 754 755 |
# File 'lib/net/imap/response_data.rb', line 753 def to_sequence_set SequenceSet.new all_seqnos end |