How to fill out an abstract method?

Solution 1:

AdColony.configure(withAppID: "MY_APP_ID", zoneIDs: ["MY_ZONE_ID"], options: nil){ (zones) in
    for zone in zones {
        zone.setReward { success, name, amount in
            if success {
                // TODO: Something...
            }
        }
    }
}