You can also use groupingBy in this case as there are 2 group posibilities (active and inactive employees):
Map> grouped = employees.stream()
.collect(Collectors.groupingBy(Employee::isActive));
List activeEmployees = grouped.get(true);
List formerEmployees = grouped.get(false);