VERSION 1.0 CLASS BEGIN MultiUse = -1 'True Persistable = 0 'NotPersistable DataBindingBehavior = 0 'vbNone DataSourceBehavior = 0 'vbNone MTSTransactionMode = 0 'NotAnMTSObject END Attribute VB_Name = "P4ConnectThread" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = True Attribute VB_PredeclaredId = False Attribute VB_Exposed = True Option Explicit ' Simple class which does a P4Connect in a thread in case of long timeouts Implements ThreadLaunch Private m_Notify As Long Private Function ThreadLaunch_Go(InputData As Variant, OutputData As Variant, ThreadSignalPtr As Long) As Long Dim SleepTime As Long Dim p4 As P4COM.p4 ThreadSignalPtr = VarPtr(m_Notify) ThreadLaunch_Go = InputData OutputDebugStringA "Thread: Starting p4 connect" On Error Resume Next Set p4 = NewP4 p4.Connect If err.Number <> 0 Then OutputData = "Fail" Else OutputData = "Success" End If OutputDebugStringA "Thread: Finished: " & OutputData End Function Private Function HaveBeenNotified() As Boolean HaveBeenNotified = m_Notify End Function
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 11314 | Robert Cowham | Initial population of perforce_software version of P4OFC | ||
//guest/robert_cowham/perforce/P4OFC/main/p4comaddin/P4ConnectThread.cls | |||||
#1 | 10843 | Robert Cowham |
Initial version of P4OFC source code. See README.txt (and LICENSE.txt and doc\P4OFC-Design.docx) |