Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for WitnessNotificationMessage (0.12 seconds)

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

         * @return the decoded notification message
         * @throws NdrException if decoding fails
         */
        private WitnessNotificationMessage decodeNotificationMessage(NdrBuffer buf) throws NdrException {
            WitnessNotificationMessage message = new WitnessNotificationMessage();
    
            // Message type
            int messageType = buf.dec_ndr_long();
            message.setType(messageType);
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 24 00:12:28 GMT 2025
    - 16.4K bytes
    - Click Count (0)
  2. src/main/java/jcifs/internal/witness/WitnessClient.java

            switch (messageType) {
            case WitnessAsyncNotifyMessage.WitnessNotificationMessage.WITNESS_RESOURCE_CHANGE:
                return WitnessEventType.RESOURCE_CHANGE;
            case WitnessAsyncNotifyMessage.WitnessNotificationMessage.WITNESS_CLIENT_MOVE:
                return WitnessEventType.CLIENT_MOVE;
            case WitnessAsyncNotifyMessage.WitnessNotificationMessage.WITNESS_SHARE_MOVE:
                return WitnessEventType.SHARE_MOVE;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 20.8K bytes
    - Click Count (0)
Back to Top