Uses of Class
com.ellucian.ethos.integration.client.messages.ChangeNotification
-
-
Uses of ChangeNotification in com.ellucian.ethos.integration.client
Methods in com.ellucian.ethos.integration.client that return types with arguments of type ChangeNotification Modifier and Type Method Description List<ChangeNotification>
EthosResponseConverter. toChangeNotificationList(EthosResponse ethosResponse)
Converts the given ethosResponse to a list of ChangeNotification objects. -
Uses of ChangeNotification in com.ellucian.ethos.integration.client.messages
Methods in com.ellucian.ethos.integration.client.messages that return ChangeNotification Modifier and Type Method Description static ChangeNotification
ChangeNotificationFactory. createCNFromJson(String json)
Create a ChangeNotification object using a JSON string.Methods in com.ellucian.ethos.integration.client.messages that return types with arguments of type ChangeNotification Modifier and Type Method Description List<ChangeNotification>
EthosMessagesClient. consume()
Gets a list of messages from the subscription queue of the application.List<ChangeNotification>
EthosMessagesClient. consume(int limit, int lastProcessedID)
Gets a list of messages from the subscription queue of the application.List<ChangeNotification>
EthosMessagesClient. consumeFromId(int lastProcessedID)
Gets a list of messages from the subscription queue of the application, starting after the given ID.List<ChangeNotification>
EthosMessagesClient. consumeWithLimit(int limit)
Gets a list of messages from the subscription queue of the application.static List<ChangeNotification>
ChangeNotificationFactory. createCNListFromJson(String json)
Create a ChangeNotification array using a JSON string. -
Uses of ChangeNotification in com.ellucian.ethos.integration.notification
Methods in com.ellucian.ethos.integration.notification that return types with arguments of type ChangeNotification Modifier and Type Method Description protected List<ChangeNotification>
AbstractEthosChangeNotificationSubscription. getChangeNotifications(int numNotifications)
Intended to be used internally by the SDK.Methods in com.ellucian.ethos.integration.notification with parameters of type ChangeNotification Modifier and Type Method Description abstract void
AbstractEthosChangeNotificationSubscriber. onChangeNotification(ChangeNotification changeNotification)
This is the hook which client application code should implement when subclassing this class for processing ChangeNotifications.void
AbstractEthosChangeNotificationSubscriber. onNext(ChangeNotification item)
Intended to be used internally by the SDK.Method parameters in com.ellucian.ethos.integration.notification with type arguments of type ChangeNotification Modifier and Type Method Description abstract void
AbstractEthosChangeNotificationListSubscriber. onChangeNotificationList(List<ChangeNotification> changeNotificationList)
This is the hook which client application code should implement when subclassing this class for processing entire lists of ChangeNotifications.void
AbstractEthosChangeNotificationListSubscriber. onNext(List<ChangeNotification> item)
Intended to be used internally by the SDK.protected abstract void
AbstractEthosChangeNotificationSubscription. processChangeNotifications(List<ChangeNotification> cnList)
Intended to be used internally by the SDK.protected void
EthosChangeNotificationListSubscription. processChangeNotifications(List<ChangeNotification> cnList)
Intended to be used internally by the SDK.protected void
EthosChangeNotificationSubscription. processChangeNotifications(List<ChangeNotification> cnList)
Intended to be used internally by the SDK.void
EthosChangeNotificationListPollService. subscribe(Flow.Subscriber<? super List<ChangeNotification>> subscriber)
Subscribes the given subscriber to anEthosChangeNotificationListSubscription
, initiating the process for the subscriber to receive entire lists of ChangeNotifications at a time.void
EthosChangeNotificationPollService. subscribe(Flow.Subscriber<? super ChangeNotification> subscriber)
Subscribes the given subscriber to anEthosChangeNotificationSubscription
, initiating the process for the subscriber to receive ChangeNotifications. -
Uses of ChangeNotification in com.ellucian.ethos.integration.service
Methods in com.ellucian.ethos.integration.service that return ChangeNotification Modifier and Type Method Description protected ChangeNotification
EthosChangeNotificationService. processChangeNotificationOverrides(ChangeNotification changeNotification)
Intended to be used internally by the SDK.Methods in com.ellucian.ethos.integration.service that return types with arguments of type ChangeNotification Modifier and Type Method Description List<ChangeNotification>
EthosChangeNotificationService. getChangeNotifications()
Retrieves change notifications using the default limit of 20 messages for message retrieval.List<ChangeNotification>
EthosChangeNotificationService. getChangeNotifications(int limit)
Retrieves change notifications using the given limit for message retrieval.Methods in com.ellucian.ethos.integration.service with parameters of type ChangeNotification Modifier and Type Method Description protected ChangeNotification
EthosChangeNotificationService. processChangeNotificationOverrides(ChangeNotification changeNotification)
Intended to be used internally by the SDK.
-