class CC::Thread
- CC::Thread
- Reference
- Object
Overview
Belongs to a single Board
and contains many Post
s.
Included Modules
- JSON::Serializable
Defined in:
cc-lib/thread.crConstructors
- .new(pull : JSON::PullParser)
- .new(id : UInt32, flags : Array(String) = [] of String, post_limit : UInt16 = 350, posts : Array(CC::Post) = [] of CC::Post)
Instance Method Summary
- #add_post(post_options)
- #flags : Array(String)
- #flags=(flags : Array(String))
- #id : UInt32
- #id=(id : UInt32)
- #post_limit : UInt16
- #post_limit=(post_limit : UInt16)
- #posts : Array(CC::Post)
- #posts=(posts : Array(CC::Post))
Constructor Detail
def self.new(id : UInt32, flags : Array(String) = [] of String, post_limit : UInt16 = 350, posts : Array(CC::Post) = [] of CC::Post)
#