PostReceiveHook
public class PostReceiveHookChain extends Object implements PostReceiveHook
PostReceiveHook
that delegates to a list of other hooks.
Hooks are run in the order passed to the constructor.
NULL
Modifier and Type | Method | Description |
---|---|---|
static PostReceiveHook |
newChain(List<? extends PostReceiveHook> hooks) |
Create a new hook chaining the given hooks together.
|
void |
onPostReceive(ReceivePack rp,
Collection<ReceiveCommand> commands) |
Invoked after all commands are executed and status has been returned.
|
public static PostReceiveHook newChain(List<? extends PostReceiveHook> hooks)
hooks
- hooks to execute, in order.public void onPostReceive(ReceivePack rp, Collection<ReceiveCommand> commands)
PostReceiveHook
onPostReceive
in interface PostReceiveHook
rp
- the process handling the current receive. Hooks may obtain
details about the destination repository through this handle.commands
- unmodifiable set of successfully completed commands. May be
the empty set.Copyright © 2018. All rights reserved.