admin
2025-01-22 7e31442f0e9b07764e9c6a9680d3d4aeba5fe1de
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Quintiq file version 2.0
#parent: #root
Method ReceiveNotification (
  String origin_node_id,
  String notification_type,
  String notification_info
) as Boolean
{
  Description: 'Handle an incoming notification with if [notification_id] from node with id [origin_node_id]'
  TextBody:
  [*
    processed := false;
    
    if ( notification_type = DSP_DistributedServiceProviderBase::NotificationType_OperationMessageFailure() )
    {
      items := notification_info.Tokenize( DSP_DistributedServiceProviderBase::Notification_Item_seperator() );
      client_id := items.Element( 0 );
      is_soft := [Boolean] items.Element( 1 );
      error_msg := items.Element( 2 );
                            
      this.DistributedServiceProviderBase().OnOperationFailedOnMasterNotification( client_id, is_soft, error_msg );
      processed := true;
    }
    
    return processed;
  *]
}