Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
integer, | public | :: | collection_counter | = | 0 | ||
real(kind=REAL32), | public, | allocatable | :: | q1 | |||
real(kind=REAL32), | public, | allocatable | :: | q2(:) | |||
type(MessageVector), | public | :: | messages | ||||
type(MockSocketLog), | public, | pointer | :: | log |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(MockSocketLog), | target | :: | log |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(MockSocket), | intent(inout) | :: | this | |||
class(AbstractMessage), | intent(in) | :: | message |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(MockSocket), | intent(inout), | target | :: | this | ||
integer, | intent(in) | :: | request_id | |||
class(AbstractDataReference), | intent(in) | :: | local_reference | |||
integer, | intent(out), | optional | :: | rc |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(MockSocket), | intent(inout), | target | :: | this | ||
character(len=*), | intent(in) | :: | string |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(MockSocket), | intent(inout) | :: | this | |||
integer, | intent(in) | :: | request_id | |||
class(AbstractDataReference), | intent(in) | :: | local_reference | |||
integer, | intent(out), | optional | :: | rc |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(MockSocket), | intent(inout) | :: | this | |||
integer, | intent(out), | optional | :: | rc |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(MockSocket), | intent(inout), | target | :: | this | ||
class(AbstractMessage), | intent(in) | :: | message | |||
integer, | intent(out), | optional | :: | rc |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(MockSocket), | intent(in) | :: | this |
type, extends(AbstractSocket) :: MockSocket type (MessageVector) :: messages type (MockSocketLog), pointer :: log integer :: collection_counter = 0 real(kind=REAL32), allocatable :: q1 real(kind=REAL32), allocatable :: q2(:) contains procedure :: prefix procedure :: receive procedure :: send procedure :: add_message procedure :: put procedure :: get procedure :: to_string end type MockSocket