这是我的规则
rule "Multiple bookings via same mobile"
when
(stayDateGroupingIteration : StayDateGroupingDto($stayGroupedBookings : stayGroupedBookings)) and (QueryTypeDto( queryType == "multiple" ))
$travellerCount :Number() from accumulate(BookingSummaryDtoList( $bookingSummaryDtoList : bookingSummaryDtoList) from $stayGroupedBookings,
init( int count=0; List<String> globalList= new ArrayList(); Set<String> duplicateSet=new HashSet();),
action(
for(Object bookingSummary : $bookingSummaryDtoList)
{
if(((BookingSummaryDto)bookingSummary).getTravellerId()!=null)
{
String travellerId=((BookingSummaryDto)bookingSummary).getTravellerId().toString();
Set<String> finalDuplicateSet=MultiBookingFraudServiceImpl.checkDuplicates(travellerId,globalList,duplicateSet);
count=count+1;
}
}
),
result( new Integer(count)))
then
//some action to be taken here
System.out.println($travellerCount);
end
如何退回套装
最终复制集
从累积代替计数,我也不想在我的java类中使用任何全局变量或静态变量。可以这样做还是我需要遵循其他方法?