In ObjectiveC i can define block which will be used many places like
typedef void (^APISuccessHandler)(RKObjectRequestOperation *operation, RKMappingResult *result);
and then use it in (for example) ViewController propery
@property (nonatomic, copy) APISuccessHandler successHandler;
How do same in swift?