server/core/src/main/java/org/apache/vysper/xmpp/modules/core/im/handler/PresenceSubscriptionHandler.java [208:223]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        List<String> resources = registry.getInterestedResources(user);
        for (String resource : resources) {
            Entity userResource = new EntityImpl(user, resource);
            Stanza push = RosterStanzaUtils.createRosterItemPushIQ(userResource, sessionContext.nextSequenceValue(),
                    rosterItem);

            try {
                stanzaBroker.write(userResource, push, IgnoreFailureStrategy.INSTANCE);
            } catch (DeliveryException e) {
                LOG.error(e.getMessage(), e);
            }
        }

    }

    @SpecCompliance(compliant = {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



server/core/src/main/java/org/apache/vysper/xmpp/modules/core/im/handler/PresenceSubscriptionHandler.java [264:278]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        List<String> resources = registry.getInterestedResources(user);

        for (String resource : resources) {
            Entity userResource = new EntityImpl(user, resource);
            Stanza push = RosterStanzaUtils.createRosterItemPushIQ(userResource, sessionContext.nextSequenceValue(),
                    rosterItem);
            try {
                stanzaBroker.write(userResource, push, IgnoreFailureStrategy.INSTANCE);
            } catch (DeliveryException e) {
                LOG.error(e.getMessage(), e);
            }
        }
    }

    @SpecCompliance(compliant = {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



