Package org.kohsuke.github
Interface Refreshable
-
- All Known Implementing Classes:
GHContent,GHPullRequest,GHTeam
public interface RefreshableThe interface Refreshable.- Author:
- Liam Newman
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidrefresh()Opens a connection to the given URL.default voidrefresh(Object value)Calls refresh if the provided value is null
-
-
-
Method Detail
-
refresh
void refresh() throws IOExceptionOpens a connection to the given URL.- Throws:
IOException- the io exception
-
refresh
default void refresh(Object value) throws IOException
Calls refresh if the provided value is null- Parameters:
value- the value- Throws:
IOException- the io exception
-
-