Uses of Class
org.apache.flink.streaming.runtime.tasks.mailbox.Mail
Packages that use Mail
-
Uses of Mail in org.apache.flink.streaming.runtime.tasks.mailbox
Methods in org.apache.flink.streaming.runtime.tasks.mailbox that return MailModifier and TypeMethodDescriptionTaskMailbox.take(int priority) This method returns the oldest mail from the mailbox (head of queue) or blocks until a mail is available.TaskMailboxImpl.take(int priority) Methods in org.apache.flink.streaming.runtime.tasks.mailbox that return types with arguments of type MailModifier and TypeMethodDescriptionTaskMailbox.close()Close the mailbox.TaskMailboxImpl.close()TaskMailbox.drain()Drains the mailbox and returns all mails that were still enqueued.TaskMailboxImpl.drain()TaskMailbox.tryTake(int priority) Returns an optional with either the oldest mail from the mailbox (head of queue) if the mailbox is not empty or an empty optional otherwise.TaskMailboxImpl.tryTake(int priority) TaskMailbox.tryTakeFromBatch()Returns an optional with either the oldest mail from the batch (head of queue) if the batch is not empty or an empty optional otherwise.TaskMailboxImpl.tryTakeFromBatch()Methods in org.apache.flink.streaming.runtime.tasks.mailbox with parameters of type MailModifier and TypeMethodDescriptionvoidEnqueues the given mail to the mailbox and blocks until there is capacity for a successful put.voidvoidAdds the given action to the head of the mailbox.void