class GuildTextThreadManager

extends

ThreadManager<false>
export class GuildTextThreadManager<AllowedThreadType> extends ThreadManager<false>

Manages API methods for ThreadChannel objects and stores their cache.

Type Parameters

AllowedThreadType

The cache of this Manager

The channel this Manager belongs to

readonly
client : Client

The client that instantiated this Manager

readonly
holds : Constructable<Holds>

The data structure belonging to this manager.

Inherited from: DataManager

create(
options: GuildTextThreadCreateOptions<AllowedThreadType>
) : Promise<ThreadChannel>

Creates a new thread in the channel.

Examples:
// Create a new public thread
channel.threads
  .create({
    name: 'food-talk',
    autoArchiveDuration: ThreadAutoArchiveDuration.OneHour,
    reason: 'Needed a separate thread for food',
  })
  .then(threadChannel => console.log(threadChannel))
  .catch(console.error);
// Create a new private thread
channel.threads
  .create({
     name: 'mod-talk',
     autoArchiveDuration: ThreadAutoArchiveDuration.OneHour,
     type: ChannelType.PrivateThread,
     reason: 'Needed a separate thread for moderation',
   })
  .then(threadChannel => console.log(threadChannel))
  .catch(console.error);

Obtains a thread from Discord, or the channel cache if it's already available.

Examples:
// Fetch a thread by its id
channel.threads.fetch('831955138126104859')
  .then(channel => console.log(channel.name))
  .catch(console.error);

Returns: FetchedThreads if active & FetchedThreadsMore if archived.

fetchActive(
cache?: boolean
) : Promise<FetchedThreads>

Obtains all active threads in the channel.

Inherited from: ThreadManager

fetchArchived() : Promise<FetchedThreadsMore>

Obtains a set of archived threads from Discord. This method requires the PermissionFlagsBits permission in the parent channel.

Inherited from: ThreadManager

Resolves a ThreadChannelResolvable to a ThreadChannel object.

Inherited from: ThreadManager

resolveId() : Snowflake

Resolves a ThreadChannelResolvable to a ThreadChannel id.

Inherited from: ThreadManager

valueOf() : Collection<Key, Holds>

Inherited from: DataManager