Members
- 
			close
- 
	DescriptionThe closemethod asks an object to shut itself down in a way that will allow it to be reopened, unlike the
 end method which will call the destroy method which should make the object unusable, but also
 devoid of all resources whereasclosemay still keep some resources open.Heading 1 Heading 2 Heading 3 Bar Food This is a table This uses the beforechain which means the last one defined in the first one destroyedDetails
- 
			end
- 
	DescriptionThe endmethod will call the destroy method which should make the object unusable and
 devoid of all resources, unlike the
 close method asks an object to shut itself down in a way that will allow it to be reopened.This uses the beforechain which means the last one defined in the first one destroyedExamplesAdd this to your application.properties. foo=barDetails
- 
			<private> destroy
- 
	DescriptionDestroy is called by the end method and it is here that you should clean up after yourself. The difference between destroyand end is theendis the verb that you raise on an object to ask it to go away
 anddestroyis where you actually do the work to clean up. Think of this as the counterpart ofconstructoryet
 not called automatically.This uses the beforechain which means the last one defined is the first one destroyedDetails
- 
			open
- 
	DescriptionIf you are using the open/close paradigm for an object that can kind of go dormant on base/chains#close and can be "reopened" 
 again later, here is where the "open" code will go.This used the afterchain which means that the first one defined is the first one destroyed.Details