use of org.thoughtcrime.securesms.jobs.PushGroupSendJob in project Signal-Android by WhisperSystems.
the class MessageSender method sendGroupPush.
private static void sendGroupPush(Context context, Recipients recipients, long messageId, long filterRecipientId) {
JobManager jobManager = ApplicationContext.getInstance(context).getJobManager();
jobManager.add(new PushGroupSendJob(context, messageId, recipients.getPrimaryRecipient().getNumber(), filterRecipientId));
}
Aggregations