Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setNotifications (0.06 sec)

  1. src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java

         *
         * @return the list of notifications
         */
        public List<WitnessNotificationResponse> getNotifications() {
            return new ArrayList<>(notifications);
        }
    
        /**
         * Sets the notifications list.
         *
         * @param notifications the notifications to set
         */
        public void setNotifications(List<WitnessNotificationResponse> notifications) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/witness/WitnessRpcClient.java

                // Send the RPC request
                rpcHandle.sendrecv(message);
    
                if (message.isSuccess()) {
                    List<WitnessAsyncNotifyMessage.WitnessNotificationResponse> notifications = message.getNotifications();
                    if (!notifications.isEmpty()) {
                        log.debug("Received {} notifications", notifications.size());
                        return notifications.get(0); // Return first notification
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 12.1K bytes
    - Viewed (0)
Back to top